Options for the completion resource.
API
interface CompletionResourceOptions<Input> {apiUrl?: string;debugName?: string;input: Signal <Input | null | undefined>;model: SignalLike <string>;system: SignalLike <string>;}CompletionResourceOptions
@typeInputapiUrl
stringThe API URL to use for the completion.
debugName
stringThe debug name for the completion resource.
input
Signal<Input | null | undefined>The input to the completion.
model
SignalLike<string>The model to use for the completion.
system
SignalLike<string>The system prompt to use for the completion.