diff options
Diffstat (limited to 'llamachat/config.py')
| -rw-r--r-- | llamachat/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llamachat/config.py b/llamachat/config.py index 4add5ed..81b799b 100644 --- a/llamachat/config.py +++ b/llamachat/config.py @@ -247,6 +247,12 @@ def write_default(path: Path = CONFIG_PATH) -> Path: '# dialog saves goes to models.ini beside this file, so none of\n' '# these has to be set here.\n' '#\n' + '# thinking_budget sets a provider-specific cap on chain-of-thought\n' + '# tokens. It is currently sent only to SiliconFlow; other endpoints\n' + '# ignore it when unset, so leaving it out is safe. SiliconFlow\'s\n' + '# default is 4096; raise it for complex questions that need more\n' + '# room to reason.\n' + '#\n' '# [providers.together]\n' '# base_url = "https://api.together.xyz"\n' '# api_key = "pass:api/together"\n' @@ -254,6 +260,7 @@ def write_default(path: Path = CONFIG_PATH) -> Path: '# ctx_size = 32768\n' '# price_in = 0.60\n' '# price_out = 0.60\n' + '# thinking_budget = 8192\n' ) return path |
