Skip to content

Commit

Permalink
fixed circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 2, 2024
1 parent 2989378 commit a108528
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion vision_agent/agent/vision_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
VA_CODE,
)
from vision_agent.lmm import LMM, AnthropicLMM, Message, OpenAILMM
from vision_agent.tools import META_TOOL_DOCSTRING
from vision_agent.tools.meta_tools import (
META_TOOL_DOCSTRING,
Artifacts,
check_and_load_image,
use_extra_vision_agent_args,
Expand Down
1 change: 0 additions & 1 deletion vision_agent/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import Callable, List, Optional

from .meta_tools import META_TOOL_DOCSTRING, Artifacts
from .prompts import CHOOSE_PARAMS, SYSTEM_PROMPT
from .tool_utils import get_tool_descriptions_by_names
from .tools import (
Expand Down

0 comments on commit a108528

Please sign in to comment.