e4dcfc49aa
Tests / Import Check (Python 3.13) (push) Has been cancelled
Tests / Import Check (Python 3.14) (push) Has been cancelled
Tests / Python Tests (Python 3.11) (push) Has been cancelled
Tests / Python Tests (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.14) (push) Has been cancelled
Tests / Test Summary (push) Has been cancelled
Tests / Lint and Format (push) Has been cancelled
Tests / Web Node Tests (push) Has been cancelled
Tests / Import Check (Python 3.11) (push) Has been cancelled
Tests / Import Check (Python 3.12) (push) Has been cancelled
Tests / Python Tests (Python 3.13) (push) Has been cancelled
19 lines
441 B
Python
19 lines
441 B
Python
"""Prompt manager path resolution tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from deeptutor.services.prompt import get_prompt_manager
|
|
|
|
|
|
def test_prompt_manager_loads_prompts_from_deeptutor_tree() -> None:
|
|
manager = get_prompt_manager()
|
|
manager.clear_cache()
|
|
|
|
prompts = manager.load_prompts(
|
|
module_name="question",
|
|
agent_name="idea_agent",
|
|
language="en",
|
|
)
|
|
|
|
assert "generate_ideas" in prompts
|