Input
Type:String
The data type that LLMCompletionNode accepts as input
Output
Type:String
The data type that LLMCompletionNode outputs
Examples
Constructors
Interfaces
Constructors
constructor
Parameters
Optional configuration for the completion node.
Returns
RemoteLLMCompletionNode
Interfaces
RemoteLLMCompletionNodeProps
Configuration forRemoteLLMCompletionNode using LLM provider settings.
Properties
textGenerationConfig?:object
Text generation configuration parameters
stream?: boolean
Whether to stream responses
provider?: string
LLM provider (e.g., ‘openai’, ‘anthropic’, ‘inworld’)
modelName?: string
Model name specific to the provider (e.g., ‘gpt-4’, ‘claude-3-5-sonnet-20241022’)
RemoteLLMCompletionNodeWithLLMComponentProps
Configuration forRemoteLLMCompletionNode using an existing LLM component.
Properties
llmComponent:RemoteLLMComponent | AbstractComponent
Existing LLM component to use
textGenerationConfig?: object
Text generation configuration parameters
stream?: boolean
Whether to stream responses