23 lines
864 B
YAML
23 lines
864 B
YAML
api: openai # openai, azure, groq, ollama, anthropic
|
|
model: gpt-4o # if azure this is the deployment name
|
|
# other options: gpt-4o, llama3-8b-8192, or claude-3-5-sonnet-20240620
|
|
|
|
# Azure specific (only needed if api: azure-openai)
|
|
azure_endpoint: https://<name>.openai.azure.com
|
|
azure_api_version: 2024-02-15-preview
|
|
|
|
# Completion parameters
|
|
temperature: 0
|
|
max_tokens: 500
|
|
|
|
safety: True # Safety: If set to False, commands from LLM run *without* prompting the user.
|
|
modify: False # Enable prompt modify feature
|
|
suggested_command_color: blue # Suggested Command Color
|
|
|
|
# API Keys (optional): Preferred to use environment variables
|
|
# OPENAI_API_KEY, AZURE_OPENAI_API_KEY, ANTHROPIC_API_KEY or GROQ_API_KEY (.env file is also supported)
|
|
azure_openai_api_key:
|
|
openai_api_key:
|
|
groq_api_key:
|
|
anthropic_api_key:
|