Skip to content

Commit

Permalink
fixed type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Oct 11, 2024
1 parent 1c55d90 commit eb7f7d2
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_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def generate_code_from_plan(
success = cast(bool, results["success"])
code = remove_installs_from_code(cast(str, results["code"]))
test = remove_installs_from_code(cast(str, results["test"]))
working_memory.extend(results["working_memory"]) # type: ignore
working_memory.extend(results["working_memory"])
execution_result = cast(Execution, results["test_result"])

return {
Expand Down
1 change: 0 additions & 1 deletion vision_agent/agent/vision_agent_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
CodeInterpreterFactory,
Execution,
)
from vision_agent.utils.execute import CodeInterpreter, CodeInterpreterFactory
from vision_agent.utils.sim import AzureSim, OllamaSim, Sim

_LOGGER = logging.getLogger(__name__)
Expand Down

0 comments on commit eb7f7d2

Please sign in to comment.