Crystalcareai
commited on
Commit
•
59fe577
1
Parent(s):
433dc45
Update README.md
Browse files
README.md
CHANGED
@@ -133,4 +133,24 @@ While Arcee Agent excels in its specialized areas, users should be aware of its
|
|
133 |
- The model's general knowledge and capabilities outside of function calling and tool use may be more limited compared to larger, general-purpose language models.
|
134 |
- Performance in tasks unrelated to its core functionalities may not match that of models with more diverse training.
|
135 |
- As with all language models, outputs should be validated and used responsibly, especially in critical applications.
|
136 |
-
- The model's knowledge cutoff date may limit its awareness of recent events or technological advancements.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
- The model's general knowledge and capabilities outside of function calling and tool use may be more limited compared to larger, general-purpose language models.
|
134 |
- Performance in tasks unrelated to its core functionalities may not match that of models with more diverse training.
|
135 |
- As with all language models, outputs should be validated and used responsibly, especially in critical applications.
|
136 |
+
- The model's knowledge cutoff date may limit its awareness of recent events or technological advancements.
|
137 |
+
|
138 |
+
## Usage
|
139 |
+
The model was trained to respect many different formats - but the evals were done with this specific tool template:
|
140 |
+
```python
|
141 |
+
In this environment, you have access to a set of tools you can use to answer the user's question.
|
142 |
+
|
143 |
+
You may call them like this:
|
144 |
+
<function_calls>
|
145 |
+
<invoke>
|
146 |
+
<tool_name>$TOOL_NAME</tool_name>
|
147 |
+
<parameters>
|
148 |
+
<$PARAMETER_NAME>$PARAMETER_VALUE</$PARAMETER_NAME>
|
149 |
+
...
|
150 |
+
</parameters>
|
151 |
+
</invoke>
|
152 |
+
</function_calls>
|
153 |
+
|
154 |
+
Here are the tools available:
|
155 |
+
<tools>
|
156 |
+
```
|