File size: 7,176 Bytes
dc6e8c9 7180102 dc6e8c9 6c53af6 aa5b14d f792b02 a68529a aa5b14d db84809 aa5b14d f792b02 aa5b14d 6c53af6 6450391 a68529a 6450391 a68529a 6450391 f792b02 a68529a 6450391 dc6e8c9 6c53af6 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 49bdb0a c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 dc6e8c9 c805b83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
---
license: apache-2.0
datasets:
- StarfleetAI/function-calling
- ajibawa-2023/Code-290k-ShareGPT
language:
- en
library_name: transformers
---
# StarfleetAI Polaris Small
> [!WARNING]
> Even though the model is not yet meant for production usage, we still encourage you to give it a try and tell us what you think.
>
> Any feedback or suggestions are welcomed!
This model was developed by StarfleetAI with the aim of it being used for autonomous AI agent scenarios.
## Model Details
* Based on `Open-Orca/Mistral-7B-OpenOrca`
* Additionally trained on coding tasks
* Trained for function calling
## Current Features
### `v0.2`
- Improved function calling in long conversations
- Function call arguments became a JSON string to comply with OpenAI
### `v0.1.1`
- Function call response role changed to `tool` to comply with OpenAI
### `v0.1`
- Able to call functions
- Not bad at coding tasks
## Work To Do
- Needs to eliminate some hallucinations (it, for example, sometimes regressing news articles instead of calling the `get_rss_feed` function, and stuff like that)
- Correct typography (`Answer: 123` instead of `Answer:123`)
- Current date / time / timezone conversational abilities ("Schedule a call tomorrow at 6PM")
- Needs some DPO
- Need to be evaluated on relevant metrics
## Prompt Format
We wanted our prompt to:
1. Have a configurable `system` prompt part, which is meant to be changed by the end user.
2. Describe the functions available to the model (in a specific, static place in the prompt, making it easier for the model to identify them).
3. Be capable of carrying additional configuration options in the future, such as the current date/time or the user's name.
In order to fullfill these needs, we designed the prompt format, which seems to tick all the boxes.
### With Functions
```
## Configuration
Functions: enabled
## Available Functions
{ ... }
{ ... }
---
You are a helpful assistant.
```
### Without Functions
```
## Configuration
Functions: disabled
---
You are a helpful assistant.
```
## Functions Calling
In order for the model to call a function, we have introduced two new tokens: `<|fn_start|>` and `<|fn_end|>`. It's safe to assume that if the model decides to call a function, there will be no other response from it except for the function call between these special tokens. If this is not true for some of your cases, please feel free to contact us with examples.
For now, the model is only capable of calling one function at a time.
### Example Function Call
```
<|fn_start|>{"name": "generate_password", "arguments": "{\"length\": 42}"}<|fn_end|>
```
## Function Call Response
The model expects the function call response to be provided right after the function call request from a role `tool`:
```
<|im_start|>tool
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
```
There are no specific requirements on the response format. Feel free to respond with anything you want.
## Example Conversation
> Newlines after the `<|im_end|>` are included here only for ease of reading. In the actual chat template, we don't use newlines in this position.
```
<|im_start|>system
## Configuration
Functions: enabled
## Available Functions
{"name": "generate_password", "description": "Generate a random password", "parameters": {"type": "object", "properties": {"length": {"type": "integer", "description": "The length of the password"}}, "required": ["length"]}}
---
You are a helpful assistant.<|im_end|>
<|im_start|>user
Generate a password, 42 characters long<|im_end|>
<|im_start|>assistant
<|fn_start|>{"name": "generate_password", "arguments": "{\"length\": 42}"}<|fn_end|><|im_end|>
<|im_start|>tool
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
<|im_start|>assistant
Here is your random password: 87cc47fbc865a290d7c7de4be3c893175c51a566b3. Please make sure to save it in a secure place.<|im_end|>
```
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Developed by:** StarfleetAI
- **Model type:** Mistral
- **Language(s) (NLP):** English
- **License:** Apache license 2.0
- **Finetuned from model:** `Open-Orca/Mistral-7B-OpenOrca`
<!-- ## Uses -->
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
<!-- ### Direct Use -->
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
<!-- [More Information Needed] -->
<!-- ### Out-of-Scope Use -->
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
<!-- [More Information Needed] -->
<!-- ## Bias, Risks, and Limitations -->
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
<!-- [More Information Needed] -->
<!-- ### Recommendations -->
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
<!-- Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations. -->
<!-- ## How to Get Started with the Model -->
<!-- Use the code below to get started with the model. -->
<!-- [More Information Needed] -->
## Training Details
You can find the trainer code available [on Github](https://github.com/StarfleetAI/polaris/tree/main/small) under the Apache 2.0 license.
<!-- ### Training Data -->
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
<!-- [More Information Needed] -->
<!-- ### Training Procedure -->
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
<!-- #### Training Hyperparameters -->
<!-- - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
<!-- ## Evaluation -->
<!-- This section describes the evaluation protocols and provides the results. -->
<!-- ### Testing Data, Factors & Metrics -->
<!-- #### Testing Data -->
<!-- This should link to a Dataset Card if possible. -->
<!-- [More Information Needed] -->
<!-- #### Factors -->
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
<!-- [More Information Needed] -->
<!-- #### Metrics -->
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
<!-- [More Information Needed] -->
<!-- ### Results -->
<!-- [More Information Needed] -->
<!-- #### Summary -->
<!-- ## Citation -->
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
<!-- **BibTeX:** -->
<!-- [More Information Needed] -->
<!-- **APA:** -->
<!-- [More Information Needed] -->
<!-- ## Model Card Contact -->
<!-- [More Information Needed] --> |