From bf7fee7840518d10215e66268e1ddd705ecaeb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Andr=C3=A9=20Antunes?= Date: Tue, 2 Apr 2024 20:55:38 -0300 Subject: [PATCH] Little adjustment in the docs (#38) Little adjustment in the docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7172f8a..181be5ed 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ export OPENAI_API_KEY="your-api-key" You can interact with the agents as you would with any LLM or LMM model: ```python ->>> import vision_agent as va +>>> from vision_agent.agent import VisionAgent >>> agent = VisionAgent() >>> agent("What percentage of the area of this jar is filled with coffee beans?", image="jar.jpg") "The percentage of area of the jar filled with coffee beans is 25%."