-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.override.example.yaml
More file actions
51 lines (46 loc) · 1.55 KB
/
config.override.example.yaml
File metadata and controls
51 lines (46 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Quantum Code User Configuration Overrides
# ============================================================================
# Copy this file to ~/.quantum_code/config.yaml to customize model definitions.
#
# For the full list of available models and their settings, see:
# quantum_code/config/config.yaml (in the package or repo)
#
# For runtime settings (API keys, defaults), use .env file instead.
# ============================================================================
version: "1.0"
models:
# ----------------------------------------
# Example: Add a custom model
# ----------------------------------------
# my-custom-model:
# litellm_model: openai/gpt-4o
# aliases:
# - custom
# - mymodel
# notes: "My custom model configuration"
# ----------------------------------------
# Example: Override an existing model's settings
# ----------------------------------------
# gpt-5-mini:
# constraints:
# temperature: 0.5 # Override default temperature
# notes: "Modified gpt-5-mini with custom temperature"
# ----------------------------------------
# Example: Add a CLI model
# ----------------------------------------
# my-cli-model:
# provider: cli
# cli_command: my-llm-cli
# cli_args:
# - "--json"
# - "--model"
# - "default"
# cli_parser: json
# aliases:
# - mycli
# notes: "Custom CLI model"
# ----------------------------------------
# Example: Disable a built-in model
# ----------------------------------------
# azure-gpt-5-mini:
# disabled: true