Adding additional QWEN models
Browse files
app.py
CHANGED
|
@@ -61,8 +61,11 @@ final_answer = FinalAnswerTool()
|
|
| 61 |
MODEL_IDS = [
|
| 62 |
#'https://wxknx1kg971u7k1n.us-east-1.aws.endpoints.huggingface.cloud/',
|
| 63 |
#'https://jc26mwg228mkj8dw.us-east-1.aws.endpoints.huggingface.cloud/',
|
| 64 |
-
'meta-llama/Llama-3.2-1B-Instruct',
|
| 65 |
'Qwen/Qwen2.5-Coder-32B-Instruct',
|
|
|
|
|
|
|
|
|
|
| 66 |
'Qwen/Qwen2.5-Coder-1.5B-Instruct'
|
| 67 |
# Add here wherever model is working for you
|
| 68 |
]
|
|
|
|
| 61 |
MODEL_IDS = [
|
| 62 |
#'https://wxknx1kg971u7k1n.us-east-1.aws.endpoints.huggingface.cloud/',
|
| 63 |
#'https://jc26mwg228mkj8dw.us-east-1.aws.endpoints.huggingface.cloud/',
|
| 64 |
+
#'meta-llama/Llama-3.2-1B-Instruct', ## Does a poor job of interpreting my questions and matching them to the tools
|
| 65 |
'Qwen/Qwen2.5-Coder-32B-Instruct',
|
| 66 |
+
'Qwen/Qwen2.5-Coder-14B-Instruct',
|
| 67 |
+
'Qwen/Qwen2.5-Coder-7B-Instruct',
|
| 68 |
+
'Qwen/Qwen2.5-Coder-3B-Instruct',
|
| 69 |
'Qwen/Qwen2.5-Coder-1.5B-Instruct'
|
| 70 |
# Add here wherever model is working for you
|
| 71 |
]
|