diff --git a/swarm_copy_tests/app/routers/__init__.py b/tests/app/routers/__init__.py similarity index 100% rename from swarm_copy_tests/app/routers/__init__.py rename to tests/app/routers/__init__.py diff --git a/swarm_copy_tests/app/routers/test_threads.py b/tests/app/routers/test_threads.py similarity index 96% rename from swarm_copy_tests/app/routers/test_threads.py rename to tests/app/routers/test_threads.py index 5fd2221..5999bcf 100644 --- a/swarm_copy_tests/app/routers/test_threads.py +++ b/tests/app/routers/test_threads.py @@ -1,14 +1,14 @@ import pytest -from swarm_copy.agent_routine import Agent, AgentsRoutine -from swarm_copy.app.config import Settings -from swarm_copy.app.dependencies import ( +from neuroagent.agent_routine import Agent, AgentsRoutine +from neuroagent.app.config import Settings +from neuroagent.app.dependencies import ( get_agents_routine, get_settings, get_starting_agent, ) -from swarm_copy.app.main import app -from swarm_copy_tests.mock_client import create_mock_response +from neuroagent.app.main import app +from tests.mock_client import create_mock_response @pytest.mark.httpx_mock(can_send_already_matched_responses=True) diff --git a/swarm_copy_tests/app/routers/test_tools.py b/tests/app/routers/test_tools.py similarity index 94% rename from swarm_copy_tests/app/routers/test_tools.py rename to tests/app/routers/test_tools.py index 46a7ae8..b5ed083 100644 --- a/swarm_copy_tests/app/routers/test_tools.py +++ b/tests/app/routers/test_tools.py @@ -4,17 +4,17 @@ import pytest -from swarm_copy.agent_routine import Agent, AgentsRoutine -from swarm_copy.app.config import Settings -from swarm_copy.app.database.schemas import ToolCallSchema -from swarm_copy.app.dependencies import ( +from neuroagent.agent_routine import Agent, AgentsRoutine +from neuroagent.app.config import Settings +from neuroagent.app.database.schemas import ToolCallSchema +from neuroagent.app.dependencies import ( get_agents_routine, get_context_variables, get_settings, get_starting_agent, ) -from swarm_copy.app.main import app -from swarm_copy_tests.mock_client import create_mock_response +from neuroagent.app.main import app +from tests.mock_client import create_mock_response @pytest.mark.httpx_mock(can_send_already_matched_responses=True)