Skip to content

Commit 222a45d

Browse files
Merge pull request #584 from normalian/fix/reasoning_agent_interactive.py
fix: Fix path for reasoning_agent_interactive.py
2 parents 08eb37f + 88c66e0 commit 222a45d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tests/agents/interactive_test_harness/reasoning_agent_interactive.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from pathlib import Path
77

88
# Add the backend path to sys.path so we can import v3 modules
9-
backend_path = Path(__file__).parent.parent.parent / "backend"
9+
10+
backend_path = Path(__file__).parent.parent.parent.parent / "backend"
1011
sys.path.insert(0, str(backend_path))
1112

1213
from v3.magentic_agents.models.agent_models import MCPConfig, SearchConfig

0 commit comments

Comments
 (0)