feat: add vision demo with file upload and image URL extraction to Agent class

This commit is contained in:
2025-03-07 16:28:58 +00:00
parent 4362a2468e
commit 9ab3f0e0f1
3 changed files with 81 additions and 2 deletions
+6
View File
@@ -2,6 +2,7 @@ DEMO_REPLIKA = .venv/bin/ragent.demo_replika
DEMO_DISCUSS = .venv/bin/ragent.demo_discuss
DEMO_BATCH_MESSAGES = .venv/bin/ragent.demo_batch_messages
DEMO_TOOLS = .venv/bin/ragent.demo_tools
DEMO_VISION = .venv/bin/ragent.demo_vision
PIP = .venv/bin/pip
default:
@@ -29,3 +30,8 @@ demo_batch_messages:
demo_tools:
@echo "Executing Tools Demo."
$(DEMO_TOOLS)
demo_vision:
@echo "Executing Vision Demo."
$(DEMO_VISION)