openai-kit
openai-kit copied to clipboard
A community Swift package used to interact with the OpenAI API
GPT-4 Turbo (gpt-4-1106-preview) is an updated version of GPT-4 with 128K context that's currently being offered at 1/3 of the price per token of GPT-4. I'm going to start using...
Hi, I'm a chinese student, thank for ur amazing repo about open-ai, It helps me a lot during develop. I add some new feature for this. Since our school uses...
Hi, great project ``` components.path = [configuration.api?.path, request.path] .compactMap { $0 } .joined() ``` Path cannot be specified exactly, like https://docs.llama-api.com/essentials/chat need path is https://api.llama-api.com/chat/completions . BR buhe
Hi all! I've started working on adding support for functions. I have a rather rough implementation ready, so I wanted to check in here. Function calls from the models are...
Using a background session prevents Chat requests from failing if the app goes to background. The extension on URLSession uses dataTask with completionHandler, creating an exception: ``` func dataTask(with request:...
OpenAI just released `gpt-4-0613`, `gpt-4-32k-0613`, and `gpt-3.5-turbo-0613` which allow "function calling" from the model. See: [New function calling docs](https://platform.openai.com/docs/guides/gpt/function-calling), and [blog update](https://openai.com/blog/function-calling-and-other-api-updates).
Has anyone looked at the ChatGPT plug-ins specs? Would it be within the scope of this project to add basic support for plug-ins?
I started working with this library because it was listed [here](https://platform.openai.com/docs/libraries), but the documentation was quite minimal and I ended up having to experiment a lot in order to figure...
Is anyone working on the fine-tunes endpoints?