TimeMobius
commited on
Commit
•
34a1c74
1
Parent(s):
56fd7b3
Update README.md
Browse files
README.md
CHANGED
@@ -23,10 +23,32 @@ Chat format: User: xxxx\n\nAssistant: xxx\n\n
|
|
23 |
|
24 |
Recommend Temp and topp: 1 0.3
|
25 |
|
26 |
-
function call format:
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
Assistant: xxxx
|
32 |
|
@@ -34,6 +56,8 @@ Obersavtion: xxxx
|
|
34 |
|
35 |
Assistant: xxxx
|
36 |
|
|
|
|
|
37 |
## More details
|
38 |
Mobius 12B 16k based on RWKV v6 arch, which is leading state based RNN+CNN+Transformer Mixed large language model which focus opensouce community
|
39 |
* 10~100 trainning/inference cost reduce;
|
|
|
23 |
|
24 |
Recommend Temp and topp: 1 0.3
|
25 |
|
26 |
+
function call format example:
|
27 |
+
|
28 |
+
```
|
29 |
+
System: You are a helpful assistant with access to the following functions. Use them if required -{
|
30 |
+
"name": "get_exchange_rate",
|
31 |
+
"description": "Get the exchange rate between two currencies",
|
32 |
+
"parameters": {
|
33 |
+
"type": "object",
|
34 |
+
"properties": {
|
35 |
+
"base_currency": {
|
36 |
+
"type": "string",
|
37 |
+
"description": "The currency to convert from"
|
38 |
+
},
|
39 |
+
"target_currency": {
|
40 |
+
"type": "string",
|
41 |
+
"description": "The currency to convert to"
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"required": [
|
45 |
+
"base_currency",
|
46 |
+
"target_currency"
|
47 |
+
]
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
User: Hi, I need to know the exchange rate from USD to EUR
|
52 |
|
53 |
Assistant: xxxx
|
54 |
|
|
|
56 |
|
57 |
Assistant: xxxx
|
58 |
|
59 |
+
```
|
60 |
+
|
61 |
## More details
|
62 |
Mobius 12B 16k based on RWKV v6 arch, which is leading state based RNN+CNN+Transformer Mixed large language model which focus opensouce community
|
63 |
* 10~100 trainning/inference cost reduce;
|