-
-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Undefined array key "file_ids"[Bug]: #389
Comments
I assume you are using GPT-4o which also requires an assistant v2. That's a very recent change to which this repository is not yet adjusted. |
If you want to see how the V2 API behaves, then you can use the below quick hack to support creating assistants, threads & messages. It will also allow you to read back the responses from the AI. It will even support using the latest Model, which is 'gpt-4o'. All you need to do is apply the change in three files like shown in the image below. The error happens because the V2 response doesn't have a 'file_ids' array key in the attributes array (I haven't checked whether this is true for all use-cases, but the fix is generic enough that it can easily handle cases where the file_ids key is present), and we just assign an empty array if that is the case. Please note that this is a hacky solution for people who are too impatient for this library to be fixed. |
can you estimate when you will have adapted this cool PHP library to Open AI assistants API v2? |
I am currently working on the v2 implementation, but it is a lot to do. Feel free to give it an extra boost github.com/sponsors/gehrisandro 😅 |
Description
By calling threads->createAndRun() it throws an exception 'Undefined array key "file_ids"'
The same is when calling threads()->messages()->list()
Steps To Reproduce
OpenAI PHP Client Version
v0.8.5
PHP Version
8.3
Notes
No response
The text was updated successfully, but these errors were encountered: