giux78 commited on
Commit
6aad36f
·
verified ·
1 Parent(s): 2c4a13c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -3
README.md CHANGED
@@ -61,7 +61,7 @@ json_arr = [{"name": "order_dinner", "description": "Ordina una cena al ristoran
61
  {"name": "get_news", "description": "Dammi le ultime notizie", "parameters": {"type": "object", "properties": {"argument": {"type": "string", "description": "L'argomento su cui fare la ricerca"}}, "required": ["argument"]}},
62
  ]
63
  json_string = ' '.join([json.dumps(json_obj) for json_obj in json_arr2])
64
- system_prompt = 'Tu sei un assistenze utile che ha accesso alle seguenti funzioni. Usa le funzioni solo se necessario - \n ' + json_string2 + ' \n '
65
  system_prompt
66
  ```
67
 
@@ -105,8 +105,7 @@ if functions_string:
105
  else:
106
  print('nothing to do or return a normal chat response')
107
 
108
- # Output: {'name': 'create_product',
109
- 'arguments': {'product_name': 'AIR', 'size': 'L', 'price': 100}}
110
  ```
111
 
112
 
 
61
  {"name": "get_news", "description": "Dammi le ultime notizie", "parameters": {"type": "object", "properties": {"argument": {"type": "string", "description": "L'argomento su cui fare la ricerca"}}, "required": ["argument"]}},
62
  ]
63
  json_string = ' '.join([json.dumps(json_obj) for json_obj in json_arr2])
64
+ system_prompt = 'Tu sei un assistenze utile che ha accesso alle seguenti funzioni. Usa le funzioni solo se necessario - \n ' + json_string + ' \n '
65
  system_prompt
66
  ```
67
 
 
105
  else:
106
  print('nothing to do or return a normal chat response')
107
 
108
+ # Output: {'name': 'create_product', 'arguments': {'product_name': 'AIR', 'size': 'L', 'price': 100}}
 
109
  ```
110
 
111