kalafus
kalafus
Options: https://github.com/MacPaw/OpenAI/pull/166 updates the model, adds a deprecation warning. https://github.com/MacPaw/OpenAI/pull/160 removes the model (due to frequent return of truncated responses; while the endpoint technically remains operational, i'm not sure what...
Does this fall under this scope-creep? This project specifically implements the OpenAI API.
does this [pull](https://github.com/MacPaw/OpenAI/pull/175) address the issue?
there've been some updates to the codebase. do you still get this error using .gpt4 using the latest version?
completions supports: "gpt-3.5-turbo-instruct" "babbage-002" "davinci-002" [typesafe model support proposed in this pull](https://github.com/MacPaw/OpenAI/pull/166) obviates the question.
Correct, this is done with the ChatCompletions endpoint. The documentation indicates that the User role can send 3 types of Message Content: - single value encoded strings that we're used...
looking at the Python code, OpenAI counts on you to encode image data to base64 string and feed that to the image_url.url parameter; looks like i had coded it that...
This is a Swift frontend to an existing API that does not support visual image search. Request cannot be fulfilled by this project.
after some experimentation, i find 3 key takeaways (and a bonus 4th): 1. URLSession must be created with a delegate, and configured to run in background. ``` URLSession( configuration: .background(withIdentifier:...
as it stands, the presumption is that ChatQuery will be created as non-streamable, and needs be made streamable on-demand. could also, for example, take away the `stream` parameter at ChatQuery...