UNPKG

ai

Version:

AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript

186 lines (175 loc) 5.39 kB
--- title: useCompletion description: API reference for the useCompletion hook. --- # `useCompletion()` Allows you to create text completion based capabilities for your application. It enables the streaming of text completions from your AI provider, manages the state for chat input, and updates the UI automatically as new messages are received. ## Import <Tabs items={['React', 'Svelte', 'Vue', 'Angular']}> <Tab> <Snippet text="import { useCompletion } from '@ai-sdk/react'" dark prompt={false} /> </Tab> <Tab> <Snippet text="import { Completion } from '@ai-sdk/svelte'" dark prompt={false} /> </Tab> <Tab> <Snippet text="import { useCompletion } from '@ai-sdk/vue'" dark prompt={false} /> </Tab> <Tab> <Snippet text="import { Completion } from '@ai-sdk/angular'" dark prompt={false} /> </Tab> </Tabs> ## API Signature ### Parameters <PropertiesTable content={[ { name: 'api', type: "string = '/api/completion'", description: 'The API endpoint that is called to generate text. It can be a relative path (starting with `/`) or an absolute URL.', }, { name: 'id', type: 'string', description: 'A unique identifier for the completion. If not provided, a random one will be generated. When provided, the `useCompletion` hook with the same `id` will have shared states across components. This is useful when you have multiple components showing the same chat stream', }, { name: 'initialInput', type: 'string', description: 'An optional string for the initial prompt input.', }, { name: 'initialCompletion', type: 'string', description: 'An optional string for the initial completion result.', }, { name: 'onFinish', type: '(prompt: string, completion: string) => void', description: 'An optional callback function that is called when the completion stream ends.', }, { name: 'onError', type: '(error: Error) => void', description: 'An optional callback that will be called when the chat stream encounters an error.', }, { name: 'headers', type: 'Record<string, string> | Headers', description: 'An optional object of headers to be passed to the API endpoint.', }, { name: 'body', type: 'object', description: 'An optional, additional body object to be passed to the API endpoint.', }, { name: 'credentials', type: "'omit' | 'same-origin' | 'include'", description: 'An optional literal that sets the mode of credentials to be used on the request. Defaults to same-origin.', }, { name: 'streamProtocol', type: "'text' | 'data'", isOptional: true, description: 'An optional literal that sets the type of stream to be used. Defaults to `data`. If set to `text`, the stream will be treated as a text stream.', }, { name: 'fetch', type: 'FetchFunction', isOptional: true, description: 'Optional. A custom fetch function to be used for the API call. Defaults to the global fetch function.', }, { name: 'experimental_throttle', type: 'number', isOptional: true, description: 'React only. Custom throttle wait time in milliseconds for the completion and data updates. When specified, throttles how often the UI updates during streaming. Default is undefined, which disables throttling.', }, ]} /> ### Returns <PropertiesTable content={[ { name: 'completion', type: 'string', description: 'The current text completion.', }, { name: 'complete', type: '(prompt: string, options?: { headers?: Record<string, string> | Headers, body?: object }) => Promise<string | null | undefined>', description: 'Function to execute text completion based on the provided prompt. Returns the completion result when finished.', }, { name: 'error', type: 'undefined | Error', description: 'The error thrown during the completion process, if any.', }, { name: 'setCompletion', type: '(completion: string) => void', description: 'Function to update the `completion` state.', }, { name: 'stop', type: '() => void', description: 'Function to abort the current API request.', }, { name: 'input', type: 'string', description: 'The current value of the input field.', }, { name: 'setInput', type: 'React.Dispatch<React.SetStateAction<string>>', description: 'Function to update the input value.', }, { name: 'handleInputChange', type: '(event: any) => void', description: "Handler for the `onChange` event of the input field to control the input's value.", }, { name: 'handleSubmit', type: '(event?: { preventDefault?: () => void }) => void', description: 'Form submission handler that automatically resets the input field and appends a user message.', }, { name: 'isLoading', type: 'boolean', description: 'Boolean flag indicating whether a fetch operation is currently in progress.', }, ]} />