-
Notifications
You must be signed in to change notification settings - Fork 377
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
Cannot find 'Chat' in scope #192
Comments
Yea I ran into this too, its on us for relying on the demo code although it probably could have been comm'd. See compare to resolve. |
Was this intentional or a mistake? It’s irregular to break a public API with a point release. Wondering whether to pin at 0.2.6 for now or if these changes are going to stick around. |
@kalafus ^ |
It changes to ChatQuery.ChatCompletionMessageParam |
:-( |
So how would I go about changing all the code in my app to use ChatQuery.ChatCompletionMessageParam instead of Chat. |
Describe the bug
In the latest Version 0.2.7 the public struct Chat is missing ?!
public struct Chat: Codable, Equatable { ... }
Compiler errors: Cannot find 'Chat' in the scope
The struct is not in the ChatQuery.swift file, where it was in 0.2.6
Is that new or a change? Couldn't find anything in the docs.
To Reproduce
Install 0.2.7 and try to use something like this
let messages = [Chat(role: Chat.Role.system, content: instructions)]
Expected behavior
'Chat' struct in the scope
Desktop (please complete the following information):
Version 0.2.7
The text was updated successfully, but these errors were encountered: