Skip to content

Commit 016375a

Browse files
dillonalairdYour Name
andauthored
Add example (#448)
* fix spelling mistake * update to claude4 * update readme * add example video --------- Co-authored-by: Your Name <you@example.com>
1 parent 705aa7c commit 016375a

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ _Prompt with an image/video → Get runnable vision code → Build Visual AI App
2222

2323
<br />
2424

25-
**VisionAgent** is the Visual AI pilot from LandingAI. Give it a prompt and an image, and it automatically picks the right vision models and outputs ready‑to‑run code—letting you build vision‑enabled apps in minutes.
25+
**VisionAgent** is the Visual AI pilot from LandingAI. Give it a prompt and an image, and it automatically picks the right vision models and outputs ready‑to‑run code—letting you build vision‑enabled apps in minutes. You can play around with VisionAgent using our local webapp in `examples/chat` and following the directions in the `README.md`:
26+
27+
<https://github.com/user-attachments/assets/752632b3-dda5-44f1-b27e-5cb4c97757ac>
2628

2729

2830
## Steps to Set Up the Library

examples/chat/chat-app/src/components/VersionSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const versionInfo = {
1515
description: "Latest version that's faster and better at reasoning but has fewer features.",
1616
features: [
1717
"Improved reasoning and planning",
18-
"Can hanlde image inputs",
18+
"Can handle image inputs",
1919
"Can do object detection",
2020
"More stable and faster but less feature-rich",
2121
"Final output is the final answer, not code",

vision_agent/agent/vision_agent_v3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def __init__(
173173
) -> None:
174174
if agent is None:
175175
self.agent = AnthropicLMM(
176-
model_name="claude-3-7-sonnet-20250219", max_tokens=8192
176+
model_name="claude-sonnet-4-20250514", max_tokens=8192
177177
)
178178
self.kwargs = {
179179
"thinking": {"type": "enabled", "budget_tokens": 4096},

0 commit comments

Comments
 (0)