Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Mar 22, 2024
1 parent 7b27549 commit 546c858
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion vision_agent/agent/easytool.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from pathlib import Path
from typing import Any, Callable, Dict, List, Optional, Tuple, Union

from vision_agent import LLM, LMM, OpenAILLM
from vision_agent.llm import LLM, OpenAILLM
from vision_agent.lmm import LMM
from vision_agent.tools import TOOLS

from .agent import Agent
Expand Down
3 changes: 2 additions & 1 deletion vision_agent/agent/reflexion.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from pathlib import Path
from typing import Dict, List, Optional, Tuple, Union

from vision_agent import LLM, LMM, OpenAILLM
from vision_agent.llm import LLM, OpenAILLM
from vision_agent.lmm import LMM

from .agent import Agent
from .reflexion_prompts import (
Expand Down

0 comments on commit 546c858

Please sign in to comment.