Interface: ModelProps
core/completion.ModelProps
Represents properties passed to a given Large Language Model.
Properties
maxTokens
• Optional
maxTokens: number
The maximum number of tokens to generate.
Defined in
ai-jsx/src/core/completion.tsx:31
reservedTokens
• Optional
reservedTokens: number
The number of tokens to reserve for the generation.
Defined in
ai-jsx/src/core/completion.tsx:33
stop
• Optional
stop: string
[]
A list of stop tokens.
Defined in
ai-jsx/src/core/completion.tsx:35
temperature
• Optional
temperature: number
The temperature to use for LLM calls.
Defined in
ai-jsx/src/core/completion.tsx:29
topP
• Optional
topP: number
An alternative sampling technique to temperature.
See
https://platform.openai.com/docs/api-reference/chat/create#chat/create-top_p