Update README.md
Browse files
README.md
CHANGED
@@ -25,6 +25,11 @@ This model was developed by StarfleetAI with the aim of it being used for autono
|
|
25 |
|
26 |
## Current Features
|
27 |
|
|
|
|
|
|
|
|
|
|
|
28 |
### `v0.1.1`
|
29 |
|
30 |
- Function call response role changed to `tool` to comply with OpenAI
|
@@ -36,7 +41,6 @@ This model was developed by StarfleetAI with the aim of it being used for autono
|
|
36 |
|
37 |
## Work To Do
|
38 |
|
39 |
-
- Needs more training on examples where function call should be performed in the middle/end parts of the conversation, rather than in the beginning
|
40 |
- Needs to eliminate some hallucinations (it, for example, sometimes regressing news articles instead of calling the `get_rss_feed` function, and stuff like that)
|
41 |
- Correct typography (`Answer: 123` instead of `Answer:123`)
|
42 |
- Current date / time / timezone conversational abilities ("Schedule a call tomorrow at 6PM")
|
@@ -91,7 +95,7 @@ For now, the model is only capable of calling one function at a time.
|
|
91 |
### Example Function Call
|
92 |
|
93 |
```
|
94 |
-
<|fn_start|>{"name": "generate_password", "arguments": {"length": 42}}<|fn_end|>
|
95 |
```
|
96 |
|
97 |
## Function Call Response
|
@@ -125,7 +129,7 @@ You are a helpful assistant.<|im_end|>
|
|
125 |
<|im_start|>user
|
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
|
|
|
25 |
|
26 |
## Current Features
|
27 |
|
28 |
+
### `v0.2`
|
29 |
+
|
30 |
+
- Improved function calling in long conversations
|
31 |
+
- Function call arguments became a JSON string to comply with OpenAI
|
32 |
+
|
33 |
### `v0.1.1`
|
34 |
|
35 |
- Function call response role changed to `tool` to comply with OpenAI
|
|
|
41 |
|
42 |
## Work To Do
|
43 |
|
|
|
44 |
- Needs to eliminate some hallucinations (it, for example, sometimes regressing news articles instead of calling the `get_rss_feed` function, and stuff like that)
|
45 |
- Correct typography (`Answer: 123` instead of `Answer:123`)
|
46 |
- Current date / time / timezone conversational abilities ("Schedule a call tomorrow at 6PM")
|
|
|
95 |
### Example Function Call
|
96 |
|
97 |
```
|
98 |
+
<|fn_start|>{"name": "generate_password", "arguments": "{\"length\": 42}"}<|fn_end|>
|
99 |
```
|
100 |
|
101 |
## Function Call Response
|
|
|
129 |
<|im_start|>user
|
130 |
Generate a password, 42 characters long<|im_end|>
|
131 |
<|im_start|>assistant
|
132 |
+
<|fn_start|>{"name": "generate_password", "arguments": "{\"length\": 42}"}<|fn_end|><|im_end|>
|
133 |
<|im_start|>tool
|
134 |
{"result": "87cc47fbc865a290d7c7de4be3c893175c51a566b3"}<|im_end|>
|
135 |
<|im_start|>assistant
|