Skip to content

Commit

Permalink
Fix circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
VRSEN committed Aug 15, 2024
1 parent 74d7dac commit fe65ca2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion agency_swarm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .util import set_openai_client
from .util import get_openai_client
from .util.streaming import AgencyEventHandler
from .util.validators import llm_validator
from .util import llm_validator
2 changes: 1 addition & 1 deletion agency_swarm/agents/Devid/Devid.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
from agency_swarm.agents import Agent
from agency_swarm.tools import FileSearch
from agency_swarm import llm_validator
from agency_swarm.util.validators import llm_validator


class Devid(Agent):
Expand Down
2 changes: 1 addition & 1 deletion agency_swarm/agents/Devid/tools/FileWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import json

import os
from agency_swarm import llm_validator
from agency_swarm.util.validators import llm_validator

from agency_swarm import get_openai_client
from agency_swarm.tools import BaseTool
Expand Down

0 comments on commit fe65ca2

Please sign in to comment.