Skip to content

Instantly share code, notes, and snippets.

@reishoku
Created November 10, 2025 11:42
Show Gist options
  • Select an option

  • Save reishoku/08c368980bf8b68509ab4d84bab0a88e to your computer and use it in GitHub Desktop.

Select an option

Save reishoku/08c368980bf8b68509ab4d84bab0a88e to your computer and use it in GitHub Desktop.
FoundationModels framework
import Foundation
import FoundationModels
let session = LanguageModelSession()
let res = session.streamResponse(to: "Hello!")
for try await p in res {
print(p.content)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment