-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Add model
prop to useChat hook to remove the need for a backend
#5207
base: main
Are you sure you want to change the base?
Conversation
This commit introduces a new `model` prop to the `useChat` hook. This prop allows the integration of an AI provider model directly into the hook, enabling streaming functionality using `TransformStream`. The commit also updates the key generation logic to account for the new `model` prop and includes error handling for stream abortions.
Please do not merge this PR yet. I need to do some more tests. 🫤 |
I'm done testing, ready for feedback 👂 |
Hope the code can be merged quickly, as I want to use the API key directly in the client instead of relying on server forwarding. |
@qieman So far nobody has looked at this, it seems. It's been over a week 🥲 |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Vercel when will this merge 👀 |
@The-Best-Codes I'm envisioning a transport abstraction where you can plug in transports other than http, and a potential transport* could be in-browser execution (with direct model invocation as a special case that is close to what you show here). The main difference would be how it's configured such that the transport polymorphism works well. Feel free to leave this PR open - I might include parts of it when I get around to add a special direct model invocation "transport".
|
So @lgrammel should I close this PR? |
@The-Best-Codes you can just leave it as is for now - I will come back to it in time. |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…vercel#5390) Co-authored-by: Andrea Amorosi <[email protected]>
…to core messages (vercel#5422)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Merge conflicts. Apparently that rebase didn't go quite right... 😳 |
Add
model
prop to useChat hook to remove the need for a backendThis PR introduces the
model
prop to theuseChat
hook, enabling direct interaction with Language Model V1 compliant AI providers (e.g., Google, Groq, and other models from@ai-sdk
) directly from the client-side, thus removing the need for a dedicated backend in simple use cases.Addresses: #5140
Changes:
model
prop toUseChatOptions
: TheUseChatOptions
interface now accepts an optionalmodel
property of typeLanguageModelV1
.triggerRequest
function now checks if amodel
is provided. If so, it uses the model'sdoStream
method to interact with the AI provider. Otherwise, it defaults to the existingcallChatApi
function, which requires a backend endpoint.model
is provided, the PR implements a streaming mechanism usingTransformStream
andWritableStream
to handle the response from the AI provider. The response is processed chunk by chunk, updating the chat messages in real-time.chatKey
: ThechatKey
used for SWR is updated to include themodel
instance if it is provided, ensuring unique cache keys for different model configurations.Usage Example:
Super open to changing this if it's not what you had in mind. 😀