Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active May 1, 2024 18:59
Show Gist options
  • Save apatronl/cb63f4beaaf4e08bec8a683d87468f89 to your computer and use it in GitHub Desktop.
Save apatronl/cb63f4beaaf4e08bec8a683d87468f89 to your computer and use it in GitHub Desktop.
@MainActor
@Observable
class ChatViewModel {
// Private
private let client: GeminiClient = GeminiClient()
// Public
var error: Error?
var waitingForResponse: Bool = false
private(set) var messages: [Message] = []
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment