You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
234 B
14 lines
234 B
8 months ago
|
from swarms import GPT4VisionAPI, Agent
|
||
1 year ago
|
|
||
8 months ago
|
llm = GPT4VisionAPI()
|
||
1 year ago
|
|
||
1 year ago
|
agent = Agent(
|
||
1 year ago
|
max_loops="auto",
|
||
|
llm=llm,
|
||
|
)
|
||
|
|
||
1 year ago
|
agent.run(
|
||
1 year ago
|
task="Describe this image in a few sentences: ",
|
||
|
img="https://unsplash.com/photos/0pIC5ByPpZY",
|
||
|
)
|