diff options
author | ben | 2025-02-27 20:03:35 +0100 |
---|---|---|
committer | ben | 2025-02-27 20:03:35 +0100 |
commit | 703ca68f1971684b345d094ff8758eaad519e5b3 (patch) | |
tree | 6d33177b6a2adb99509ff773eb747b5a57ec3631 /src | |
parent | f9b2c22f47ee7ddd0db53465678625f6cc5030ee (diff) | |
download | ai_env-703ca68f1971684b345d094ff8758eaad519e5b3.tar.gz ai_env-703ca68f1971684b345d094ff8758eaad519e5b3.tar.bz2 ai_env-703ca68f1971684b345d094ff8758eaad519e5b3.tar.xz |
Add mistral model
Diffstat (limited to 'src')
-rw-r--r-- | src/aichat/config.yaml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/aichat/config.yaml b/src/aichat/config.yaml index aa828cd..63a11a6 100644 --- a/src/aichat/config.yaml +++ b/src/aichat/config.yaml @@ -14,12 +14,6 @@ clients: - name: qwen2.5 supports_function_calling: true max_input_tokens: 128000 - - name: deepseek-r1:7b - supports_function_calling: true - max_input_tokens: 128000 - - name: gemma2 - supports_function_calling: true - max_input_tokens: 128000 - name: qwen2.5-coder:32b supports_function_calling: true max_input_tokens: 128000 @@ -29,3 +23,12 @@ clients: max_tokens_per_chunk: 2000 default_chunk_size: 8192 max_batch_size: 100 + - name: gemma2 + supports_function_calling: true + max_input_tokens: 128000 + - name: mistral + supports_function_calling: true + max_input_tokens: 128000 + - name: deepseek-r1:7b + supports_function_calling: true + max_input_tokens: 128000 |