-
Notifications
You must be signed in to change notification settings - Fork 68
Description
Hi,
I'm trying to test sample.py and tried both "gpt-35-turbo" and "davinci-003" for AzureOpenAI however when I pass the image and run output = chain.conversation("https://www.oracle-dba-online.com/sql/weekly_sales_table.png"), it apparently gets stuck with this message "Entering new AgentExecutor chain..." and killed after a while .
I tried passing a message only, to test the APIs:
output = chain.conversation("Describe this image")
the output is:
Entering new AgentExecutor chain...
1. There is an image in the input
2. The image is new in the conversation
<|im_sep|>AI
I am sorry, I need an image to describe. Please provide an image.
Finished chain.
However when I pass the image to chain.conversation, gets stuck with "> Entering new AgentExecutor chain..."
Am I not passing the message/image right? Is there an specific format for passing the image? Any clue how to make it work?
Thanks!