Skip to content

Commit

Permalink
Merge branch 'main' into fix-cam-demo
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird authored Apr 12, 2024
2 parents 872ad27 + 02289ec commit 1026327
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "vision-agent"
version = "0.0.48"
version = "0.0.51"
description = "Toolset for Vision Agent"
authors = ["Landing AI <[email protected]>"]
readme = "README.md"
Expand Down
5 changes: 5 additions & 0 deletions vision_agent/agent/vision_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,11 @@ def log_progress(self, description: str) -> None:
if self.report_progress_callback:
self.report_progress_callback(description)

def log_progress(self, description: str) -> None:
_LOGGER.info(description)
if self.report_progress_callback:
self.report_progress_callback(description)

def chat_with_workflow(
self,
chat: List[Dict[str, str]],
Expand Down

0 comments on commit 1026327

Please sign in to comment.