6188617037
Environment Corruption Check / test-python-versions (3.12.8) (push) Failing after 2s
Environment Corruption Check / test-python-versions (3.11.11) (push) Failing after 1s
Pre-commit checks / pre-commit-check (push) Failing after 1s
Environment Corruption Check / test-python-versions (3.13.2) (push) Failing after 4s
19 lines
1.2 KiB
TOML
19 lines
1.2 KiB
TOML
# Global LLM configuration
|
|
[llm] #AZURE OPENAI:
|
|
api_type= 'azure'
|
|
model = "gpt-4o-mini" # The LLM model to use
|
|
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
|
|
api_version="AZURE API VERSION" #"2024-08-01-preview" # Azure Openai version if AzureOpenai
|
|
|
|
|
|
# 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_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
|