Update README.md
Browse files
README.md
CHANGED
|
@@ -25,7 +25,11 @@ This model was developed by StarfleetAI with the aim of it being used for autono
|
|
| 25 |
|
| 26 |
## Current Features
|
| 27 |
|
| 28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
- Able to call functions
|
| 31 |
- Not bad at coding tasks
|
|
@@ -92,10 +96,10 @@ For now, the model is only capable of calling one function at a time.
|
|
| 92 |
|
| 93 |
## Function Call Response
|
| 94 |
|
| 95 |
-
The model expects the function call response to be provided right after the function call request from a role `
|
| 96 |
|
| 97 |
```
|
| 98 |
-
<|im_start|>
|
| 99 |
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
|
| 100 |
```
|
| 101 |
|
|
@@ -122,7 +126,7 @@ You are a helpful assistant.<|im_end|>
|
|
| 122 |
Generate a password, 42 characters long<|im_end|>
|
| 123 |
<|im_start|>assistant
|
| 124 |
<|fn_start|>{"name": "generate_password", "arguments": {"length": 42}}<|fn_end|><|im_end|>
|
| 125 |
-
<|im_start|>
|
| 126 |
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
|
| 127 |
<|im_start|>assistant
|
| 128 |
Here is your random password: 87cc47fbc865a290d7c7de4be3c893175c51a566b3. Please make sure to save it in a secure place.<|im_end|>
|
|
|
|
| 25 |
|
| 26 |
## Current Features
|
| 27 |
|
| 28 |
+
### `v0.1.1`
|
| 29 |
+
|
| 30 |
+
- Function call response role changed to `tool` to comply with OpenAI
|
| 31 |
+
|
| 32 |
+
### `v0.1`
|
| 33 |
|
| 34 |
- Able to call functions
|
| 35 |
- Not bad at coding tasks
|
|
|
|
| 96 |
|
| 97 |
## Function Call Response
|
| 98 |
|
| 99 |
+
The model expects the function call response to be provided right after the function call request from a role `tool`:
|
| 100 |
|
| 101 |
```
|
| 102 |
+
<|im_start|>tool
|
| 103 |
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
|
| 104 |
```
|
| 105 |
|
|
|
|
| 126 |
Generate a password, 42 characters long<|im_end|>
|
| 127 |
<|im_start|>assistant
|
| 128 |
<|fn_start|>{"name": "generate_password", "arguments": {"length": 42}}<|fn_end|><|im_end|>
|
| 129 |
+
<|im_start|>tool
|
| 130 |
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
|
| 131 |
<|im_start|>assistant
|
| 132 |
Here is your random password: 87cc47fbc865a290d7c7de4be3c893175c51a566b3. Please make sure to save it in a secure place.<|im_end|>
|