-
Notifications
You must be signed in to change notification settings - Fork 68
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
Release Kotlin package with DSL builders and multiplatform support #70
Comments
Hey @gad2103! We actually have plans to eventually release a Kotlin specific package (
For the builders, we were thinking something like this: val params = ChatCompletionCreateParams {
messages(/* ... */)
// OR
userMessage {
// ...
}
assistantMessage {
// ...
}
// More messages...
model(ChatModel.O1)
// More properties...
} Does that look like roughly what you wanted? |
Any ETA for the kotlin specific package? (it's based on the java one, only adding extensions) |
We can't make any firm commitments right now, but we'd hope to ship a Kotlin package within a month or two of GA'ing this Java one. |
Hi! |
Yes, the Kotlin package would support multiplatform |
Hello! Any further updates on this? Having Kotlin package would be really great! |
We still don't have a firm commitments (see #70 (comment)), but we've been actively working on getting this Java package to GA status, which will help the Kotlin package |
My company uses Kotlin server side and it would be nice to have Kotlin DSL builders for the all the objects herein. Happy to help contribute on this if you are looking for some contributors.
The text was updated successfully, but these errors were encountered: