Skip to content

Commit

Permalink
feat: add qwen2.5:32b model configuration to bridge_all.py
Browse files Browse the repository at this point in the history
  • Loading branch information
awwaawwa committed Sep 20, 2024
1 parent 2b9a83f commit f76d2d2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions request_llms/bridge_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,14 @@ def decode(self, *args, **kwargs):
"tokenizer": tokenizer_gpt35,
"token_cnt": get_token_num_gpt35,
},
"qwen2.5:32b": {
"fn_with_ui": chatgpt_ui,
"fn_without_ui": chatgpt_noui,
"endpoint": openai_endpoint,
"max_token": 8192,
"tokenizer": tokenizer_gpt35,
"token_cnt": get_token_num_gpt35,
},
"gemma2:27b": {
"fn_with_ui": chatgpt_ui,
"fn_without_ui": chatgpt_noui,
Expand Down

0 comments on commit f76d2d2

Please sign in to comment.