You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(models): Add llama 3.1 405B and 70B
* feat(tools): improve tools support for llama 3.1 models
* feat(models): update mistral to latest
* feat(models): use llama 3.1 8B for tasks
* fix(tools): disable tools by default
* feat(models): update model descriptions in huggingchat
* fix(front): show branding for llama 3
* fix(config): fix encoding
* feat(migrations): reset tools for everyone
* feat(config): replace orgs with final org
* feat(config): update website for llama 3.1
"preprompt" : "You are a helpful assistant with tool calling capabilities. The user has access to the tool's outputs that you as a model cannot see. This could include text, images and more.",
51
+
"parameters": {
52
+
"temperature": 0.1,
53
+
"stop": ["<|endoftext|>", "<|eot_id|>"],
54
+
"max_new_tokens": 1024,
55
+
"truncate": 7167
56
+
},
57
+
"promptExamples": [
58
+
{
59
+
"title": "Write an email from bullet list",
60
+
"prompt": "As a restaurant owner, write a professional email to the supplier to get these products every week: \n\n- Wine (x10)\n- Eggs (x24)\n- Bread (x12)"
61
+
}, {
62
+
"title": "Code a snake game",
63
+
"prompt": "Code a basic snake game in python, give explanations for each step."
64
+
}, {
65
+
"title": "Assist in a task",
66
+
"prompt": "How do I make a delicious lemon cheesecake?"
"preprompt" : "You are a helpful assistant with tool calling capabilities. The user has access to the tool's outputs that you as a model cannot see. This could include text, images and more.",
80
+
"parameters": {
81
+
"temperature": 0.1,
82
+
"stop": ["<|endoftext|>", "<|eot_id|>"],
83
+
"max_new_tokens": 2048,
84
+
"truncate": 14337
85
+
},
86
+
"promptExamples": [
87
+
{
88
+
"title": "Write an email from bullet list",
89
+
"prompt": "As a restaurant owner, write a professional email to the supplier to get these products every week: \n\n- Wine (x10)\n- Eggs (x24)\n- Bread (x12)"
90
+
}, {
91
+
"title": "Code a snake game",
92
+
"prompt": "Code a basic snake game in python, give explanations for each step."
93
+
}, {
94
+
"title": "Assist in a task",
95
+
"prompt": "How do I make a delicious lemon cheesecake?"
"prompt": "As a restaurant owner, write a professional email to the supplier to get these products every week: \n\n- Wine (x10)\n- Eggs (x24)\n- Bread (x12)"
79
-
}, {
80
-
"title": "Code a snake game",
81
-
"prompt": "Code a basic snake game in python, give explanations for each step."
82
-
}, {
83
-
"title": "Assist in a task",
84
-
"prompt": "How do I make a delicious lemon cheesecake?"
85
-
}
86
-
],
87
-
"parameters": {
88
-
"stop": ["<|eot_id|>"],
89
-
"truncate": 6144,
90
-
"max_new_tokens": 2047,
91
-
"temperature": 0.6,
92
-
"top_p" : 0.9
93
-
}
94
-
},
95
126
{
96
127
"name" : "mistralai/Mixtral-8x7B-Instruct-v0.1",
97
-
"description" : "The latest MoE model from Mistral AI! 8x7B and outperforms Llama 2 70B in most benchmarks.",
128
+
"description" : "A high-quality sparse mixture of experts model with open weights.",
"description" : "Yi-1.5 is an upgraded version of Yi. It is continuously pre-trained on Yi with a high-quality corpus of 500B tokens and fine-tuned on 3M diverse fine-tuning samples.",
190
+
"description" : "Strong performance in reasoning while maintaining excellent capabilities in language understanding.",
Copy file name to clipboardExpand all lines: src/lib/server/tools/calculator.ts
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,6 @@ const calculator: BackendTool = {
6
6
displayName: "Calculator",
7
7
description:
8
8
"A simple calculator, takes a string containing a mathematical expression and returns the answer. Only supports +, -, *, ** (power) and /, as well as parenthesis ().",
0 commit comments