This commit is contained in:
2026-03-01 17:11:29 +00:00
parent 0329c60330
commit d85bc01fc0
5 changed files with 14 additions and 24 deletions

View File

@@ -1,6 +1,9 @@
# see https://github.com/sigoden/aichat/blob/main/config.example.yaml
# see https://github.com/sigoden/aichat/blob/main/models.yaml
compress_threshold: 100000
summarize_prompt: 'Summarize the discussion in 5000 words or less to use as a prompt for future context.'
clients:
- type: openai-compatible
@@ -9,32 +12,22 @@ clients:
api_key: {{ .user.AI_OPENROUTER_KEY }}
models:
- name: anthropic/claude-sonnet-4.5
max_input_tokens: 350000
- name: anthropic/claude-sonnet-4.6
max_input_tokens: 1000000
max_output_tokens: 65000
require_max_tokens: true
input_price: 3
output_price: 15
supports_vision: true
supports_function_calling: true
patch:
body:
reasoning:
effort: high
- name: deepseek/deepseek-v3.2-exp
- name: deepseek/deepseek-v3.2
max_input_tokens: 163840
input_price: 0.20
max_output_tokens: 65000
input_price: 0.25
output_price: 0.40
patch:
body:
reasoning:
effort: high
- name: openai/gpt-4.1
max_input_tokens: 1047576
max_output_tokens: 32768
input_price: 2
output_price: 8
supports_vision: true
supports_function_calling: true

View File

@@ -1,3 +1,3 @@
---
model: openrouter:deepseek/deepseek-v3.2-exp
model: openrouter:deepseek/deepseek-v3.2
---

View File

@@ -1,3 +0,0 @@
---
model: openrouter:openai/gpt-4.1
---

View File

@@ -1,3 +1,3 @@
---
model: openrouter:anthropic/claude-sonnet-4.5
model: openrouter:anthropic/claude-sonnet-4.6
---

View File

@@ -13,10 +13,10 @@ alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias node='NODE_NO_READLINE=1 rlwrap node'
alias d='cd ~/dev'
alias k='cd ~/know'
alias t='cd ~/tmp'
alias l='cd ~/lfs'
alias d='~/dev'
alias k='~/know'
alias t='~/tmp'
alias l='~/lfs'
export EDITOR=vim