Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
WonderPG committed Dec 20, 2024
1 parent 0bb900b commit 4dd2d1b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4dd2d1b

Please sign in to comment.