-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmodels.json.example
More file actions
25 lines (25 loc) · 1.21 KB
/
Copy pathmodels.json.example
File metadata and controls
25 lines (25 loc) · 1.21 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
// This is an example model configuration file.
// To use: copy settings into models.json in the same directory. Remove any comments.
[
{
// The name used in user.model_default or the right-hand-side of model.talon-list.
"name": "gpt-4o-mini",
// Additional JSON merged into the OpenAI Chat Completions API request if user.model_endpoint is not "llm".
"api_options": {
// The temperature of the model. Higher values make the model more creative.
"temperature": 0.7
}
},
{
"name": "gemini-2.0-flash-search",
// The model ID used in the LLM CLI tool or the API. If unspecified, defaults to the name.
"model_id": "gemini-2.0-flash",
// Model-specific system prompt (overrides user.model_system_prompt).
"system_prompt": "You are a sassy but helpful assistant.",
// Options passed to the LLM CLI tool if user.model_endpoint = "llm". Run `llm models --options` to see all options for each model.
"llm_options": {
// Enables a model-specific setting, namely, the Gemini search feature, which allows the model to search the web for information.
"google_search": true
}
}
]