Transformers
GGUF
Inference Endpoints
LoneStriker commited on
Commit
f8efe94
1 Parent(s): 293f81e

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -1,35 +1,9 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ckpt filter=lfs diff=lfs merge=lfs -text
6
- *.ftz filter=lfs diff=lfs merge=lfs -text
7
- *.gz filter=lfs diff=lfs merge=lfs -text
8
- *.h5 filter=lfs diff=lfs merge=lfs -text
9
- *.joblib filter=lfs diff=lfs merge=lfs -text
10
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
- *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.npy filter=lfs diff=lfs merge=lfs -text
15
- *.npz filter=lfs diff=lfs merge=lfs -text
16
- *.onnx filter=lfs diff=lfs merge=lfs -text
17
- *.ot filter=lfs diff=lfs merge=lfs -text
18
- *.parquet filter=lfs diff=lfs merge=lfs -text
19
- *.pb filter=lfs diff=lfs merge=lfs -text
20
- *.pickle filter=lfs diff=lfs merge=lfs -text
21
- *.pkl filter=lfs diff=lfs merge=lfs -text
22
- *.pt filter=lfs diff=lfs merge=lfs -text
23
- *.pth filter=lfs diff=lfs merge=lfs -text
24
- *.rar filter=lfs diff=lfs merge=lfs -text
25
- *.safetensors filter=lfs diff=lfs merge=lfs -text
26
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
- *.tar.* filter=lfs diff=lfs merge=lfs -text
28
- *.tar filter=lfs diff=lfs merge=lfs -text
29
- *.tflite filter=lfs diff=lfs merge=lfs -text
30
- *.tgz filter=lfs diff=lfs merge=lfs -text
31
- *.wasm filter=lfs diff=lfs merge=lfs -text
32
- *.xz filter=lfs diff=lfs merge=lfs -text
33
- *.zip filter=lfs diff=lfs merge=lfs -text
34
- *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
 
1
+ natural-functions-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
2
+ natural-functions-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
3
+ natural-functions-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
4
+ natural-functions-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
5
+ natural-functions-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
6
+ natural-functions-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
7
+ natural-functions-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
8
+ natural-functions-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
9
+ natural-functions-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ datasets:
5
+ - glaiveai/glaive-function-calling-v2
6
+ - LDJnr/Capybara
7
+ ---
8
+ # NaturalFunctions-7B
9
+
10
+ Mistral-7B finetuned for Function Calling
11
+
12
+ # Examples
13
+
14
+ ## **System Prompt**
15
+
16
+ You are a helpful assistant with access to the following functions.
17
+ Use them if required -
18
+ ```json
19
+ {
20
+ "name": "create_event",
21
+ "description": "Create a new event in the calendar",
22
+ "parameters": {
23
+ "type": "object",
24
+ "properties": {
25
+ "title": {
26
+ "type": "string",
27
+ "description": "The title of the event"
28
+ },
29
+ "date": {
30
+ "type": "string",
31
+ "format": "date",
32
+ "description": "The date of the event"
33
+ },
34
+ "time": {
35
+ "type": "string",
36
+ "format": "time",
37
+ "description": "The time of the event"
38
+ },
39
+ "location": {
40
+ "type": "string",
41
+ "description": "The location of the event (optional)"
42
+ }
43
+ },
44
+ "required": [
45
+ "title",
46
+ "date",
47
+ "time"
48
+ ]
49
+ }
50
+ }
51
+ ```
52
+
53
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a374f00f7a3374ee64b99/A0d_hsWpnSoynXcpZoupm.png)
54
+
55
+ ## **System Prompt**
56
+
57
+ You are a helpful assistant with access to the following functions. Use them if required
58
+ ```json
59
+ {
60
+ "name": "calculate_shipping_cost",
61
+ "description": "Calculate the shipping cost for a package",
62
+ "parameters": {
63
+ "type": "object",
64
+ "properties": {
65
+ "weight": {
66
+ "type": "number",
67
+ "description": "The weight of the package in kilograms"
68
+ },
69
+ "destination": {
70
+ "type": "string",
71
+ "description": "The destination address"
72
+ }
73
+ },
74
+ "required": [
75
+ "weight",
76
+ "destination"
77
+ ]
78
+ }
79
+ }
80
+ ```
81
+
82
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a374f00f7a3374ee64b99/3_tPYiGFrBAYG_uOQKvn1.png)
natural-functions-Q3_K_L.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aefc745319117be80704f3989b823b570ec0b08bfe3fbd86b3d2c79a54d8fa15
3
+ size 3822024384
natural-functions-Q3_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd49eac570d4af06344f46f4278dd73e36e57ff95f486a146c14348bf1cfb671
3
+ size 3518985920
natural-functions-Q3_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:171658db16d64dd48949261339e28f02426a5cb8c4156567047efc7dc2fd0e80
3
+ size 3164567232
natural-functions-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53244f1b6d6fba4ded81c142c359f2e5ece55cd04a8803bdc348d73658966891
3
+ size 4368438976
natural-functions-Q4_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fae8fc34f90b8e8f6d3eaa94ec407d64cf046e4b3d55eadef4abeff366a2afb
3
+ size 4140373696
natural-functions-Q5_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f983cccb48ff79331b262a952f8b74fd7b02f2d29a7df0242d90f4d11b5bcafc
3
+ size 5131409088
natural-functions-Q5_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1759fbb8d0ebf0b201a2678126a3ff7500d4ac1cf7445bc9dee8fe3ab98cdca2
3
+ size 4997715648
natural-functions-Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d80099373c2b0f52ec6483394ebfbdccc22344d576498a4b27ca668ac4a8c0a
3
+ size 5942064832
natural-functions-Q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38c6219a3fa48a68ebb24f1e862d7eb4561e8edd7fb6e45b1351f63ddb35e67b
3
+ size 7695857344