From ba05d625fdae7ac70a7791505fe8d7deda8a9740 Mon Sep 17 00:00:00 2001 From: Johan Holm Date: Tue, 18 Mar 2025 11:32:50 +0100 Subject: [PATCH] fix spelling error --- config/config.example-model-openai.toml | 4 ++-- config/config.example.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.example-model-openai.toml b/config/config.example-model-openai.toml index a723abc..7924d20 100644 --- a/config/config.example-model-openai.toml +++ b/config/config.example-model-openai.toml @@ -2,7 +2,7 @@ [llm] #AZURE OPENAI: api_type= 'azure' model = "gpt-4o-mini" # The LLM model to use -base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPOLYMENT_ID}" # API endpoint URL +base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPLOYMENT_ID}" # API endpoint URL api_key = "YOUR_API_KEY" # Your API key max_tokens = 8096 # Maximum number of tokens in the response temperature = 0.0 # Controls randomness @@ -12,7 +12,7 @@ api_version="AZURE API VERSION" #"2024-08-01-preview" # Optional configuration for specific LLM models [llm.vision] model = "gpt-4o" # The vision model to use -base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPOLYMENT_ID}" +base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPLOYMENT_ID}" api_key = "YOUR_API_KEY" # Your API key for vision model max_tokens = 8192 # Maximum number of tokens in the response temperature = 0.0 # Controls randomness for vision model diff --git a/config/config.example.toml b/config/config.example.toml index 51b8ead..040bad6 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -9,7 +9,7 @@ temperature = 0.0 # Controls randomness # [llm] #AZURE OPENAI: # api_type= 'azure' # model = "YOUR_MODEL_NAME" #"gpt-4o-mini" -# base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPOLYMENT_ID}" +# base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPLOYMENT_ID}" # api_key = "AZURE API KEY" # max_tokens = 8096 # temperature = 0.0