YaTharThShaRma999 commited on
Commit
de44600
·
verified ·
1 Parent(s): bdb8e52

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -1
README.md CHANGED
@@ -36,4 +36,77 @@ Your goal is to provide the best and most human like place to grasp the object i
36
  It can not be something like back, middle, bottom, side, or front.
37
  What is the best place to grasp a {object}? it should be some specific part of the object. Only output in a single word"""
38
 
39
- Open_estimation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  It can not be something like back, middle, bottom, side, or front.
37
  What is the best place to grasp a {object}? it should be some specific part of the object. Only output in a single word"""
38
 
39
+ Open_estimation
40
+
41
+
42
+
43
+ <|im_start|>system
44
+ You are a helpful assistant with access to the following functions:
45
+
46
+ {
47
+ "name": "get_weather",
48
+ "description": "Get the current weather given a zip code.",
49
+ "parameters": {
50
+ "type": "object",
51
+ "properties": {
52
+ "zip_code": {
53
+ "type": "str"
54
+ }
55
+ }
56
+ },
57
+ "returns": "Weather"
58
+ }
59
+
60
+ {
61
+ "name": "calculate_mortgage_payment",
62
+ "description": "Get the monthly mortgage payment given an interest rate percentage.",
63
+ "parameters": {
64
+ "type": "object",
65
+ "properties": {
66
+ "loan_amount": {
67
+ "type": "int"
68
+ },
69
+ "interest_rate": {
70
+ "type": "float"
71
+ },
72
+ "loan_term": {
73
+ "type": "int"
74
+ }
75
+ }
76
+ },
77
+ "returns": "float"
78
+ }
79
+
80
+ {
81
+ "name": "get_article_details",
82
+ "description": "Get article details from unstructured article text.\ndate_published: formatted as \"MM/DD/YYYY\"",
83
+ "parameters": {
84
+ "type": "object",
85
+ "properties": {
86
+ "title": {
87
+ "type": "str"
88
+ },
89
+ "authors": {
90
+ "type": "list[str]"
91
+ },
92
+ "short_summary": {
93
+ "type": "str"
94
+ },
95
+ "date_published": {
96
+ "type": "str"
97
+ },
98
+ "tags": {
99
+ "type": "list[str]"
100
+ }
101
+ }
102
+ },
103
+ "returns": "Article"
104
+ }
105
+
106
+ To use these functions respond with:
107
+ <multiplefunctions>
108
+ <functioncall> {"name": "function_name", "arguments": {"arg_1": "value_1", "arg_2": value_2, ...}} </functioncall>
109
+ <functioncall> {"name": "function_name", "arguments": {"arg_1": "value_1", "arg_2": value_2, ...}} </functioncall>
110
+ ...
111
+ </multiplefunctions>
112
+