Skip to content

LlmConnectors[]

.halguru.yamlLlmConnectors

Represents the collection of configurations for connecting to various Large Language Model (LLM) providers. This property allows defining multiple LLM connections to be utilized by the agent.

LlmConnectors:
  - Name: My LLM Connector
    LlmProvider: OpenAIAssistant
    Model: gpt-4.1
    Temperature: 0.1
    MaxTokens: 1000
    AssistantId: 
    VectorStoreId: 
    ApiKey: 
    InstructionsPrompt: 
    Tools: []
    ApiUrl: 

Properties#

Name Type Required Description
Name Text ✔️ The name of the llm connector.
LlmProvider Option ✔️ The large language model (LLM) provider to be used by the LLM Connector.
Model Text ✔️ The model identifier to use within the LLM Connector instance.
Temperature Decimal ✔️ The randomness of responses generated by the language model.
MaxTokens Integer ✔️ The maximum number of tokens the model will generate in its response.
AssistantId Text The specific assistant model or instance used within the LLM connection.
VectorStoreId Text The identifier for the associated vector store.
ApiKey Password The API key used to authenticate with the LLM provider.
InstructionsPrompt Text The custom instructions or contextual guidance provided to the LLM for tailoring its responses.
Tools List The collection of tools or additional functionalities associated with the LLM connection.
ApiUrl Url The base URL of the API used to connect to the Large Language Model (LLM) provider.

Technical Information#

Property Value
Path LlmConnectors[]
Internal Type AgentModels.LlmConnector
Internal Root Type AgentConfiguration
File Extension .halguru.yaml
JSON Schema halguru-schema.json

Last updated: 2025-10-13
Autogenerated: Yes
AI powered: Yes
Core version: 1.66.0