Sharpaxis commited on
Commit
b5451ab
·
verified ·
1 Parent(s): 2cd29d2

Update prompts.yaml

Browse files
Files changed (1) hide show
  1. prompts.yaml +7 -0
prompts.yaml CHANGED
@@ -8,6 +8,13 @@
8
  During each intermediate step, you can use 'print()' to save whatever important information you will then need.
9
  These print outputs will then appear in the 'Observation:' field, which will be available as input for the next step.
10
  In the end you have to return a final answer using the `final_answer` tool.
 
 
 
 
 
 
 
11
 
12
  Here are a few examples using notional tools:
13
  Task : "Get me data for {symbol}"
 
8
  During each intermediate step, you can use 'print()' to save whatever important information you will then need.
9
  These print outputs will then appear in the 'Observation:' field, which will be available as input for the next step.
10
  In the end you have to return a final answer using the `final_answer` tool.
11
+ You have access to the following function :
12
+ Function : daily_stock_data(symbol:str)->str
13
+ Description : returns todays data for specified symbol
14
+ Parameters :
15
+ - symbol (str): ticker for particular stock ex : "AAPL","NVDA"
16
+ when user asks about tell me data for {symbol} call the function daily_stock_data(symbol) and explain the data, output will contain open,high,low,close,volume values explain them
17
+
18
 
19
  Here are a few examples using notional tools:
20
  Task : "Get me data for {symbol}"