nasa-petal / bidara-deep-chat

BIDARA is a GPT-4o chatbot that was instructed to help scientists and engineers understand, learn from, and emulate the strategies used by living things to create sustainable designs and technologies using the Biomimicry Institute's step-by-step design process.
https://bit.ly/bidara-ai
Other
23 stars 5 forks source link

allow uploading a file without a text message #185

Open bruffridge opened 4 days ago

bruffridge commented 4 days ago

Currently if you try to upload a file with an empty message you get an error.

bruffridge commented 4 days ago

I think the error is because deep-chat is sending a message object that contains an empty string to openai which openai gives an error for. Can probably get this error to go away, by not sending a message object at all if it is blank, and just send the file object.

bruffridge commented 4 days ago

You might be able to perform this removal of the empty message object in the requestIntercepter function. I think that function gets called before a request gets sent by deep-chat to openai.