avsolatorio commited on
Commit
ad8cab1
·
1 Parent(s): ae9c454

Comment out old prompt

Browse files

Signed-off-by: Aivin V. Solatorio <avsolatorio@gmail.com>

Files changed (1) hide show
  1. mcp_client.py +8 -8
mcp_client.py CHANGED
@@ -17,21 +17,21 @@ load_dotenv()
17
  loop = asyncio.new_event_loop()
18
  asyncio.set_event_loop(loop)
19
 
20
- SYSTEM_PROMPT = f"""You are a helpful assistant and today is {datetime.now().strftime("%Y-%m-%d")}.
21
 
22
- You do not have any knowledge of the World Development Indicators (WDI) data. However, you can use the tools provided to answer questions.
23
 
24
- You must not provide answers beyond what the tools provide.
25
 
26
- Do not make up data or information and never simulate the `get_wdi_data` tool. Instead, you must always call the `get_wdi_data` tool when the user asks for data.
27
 
28
- You can use multiple tools if needed. Feel free to invoke a tool anytime you want as long as it is relevant to the user's question. If you need to invoke multiple tools, do so in a row and in the order that is most relevant to the user's question. Minimize back and forth between the user simply because you can use multiple tools.
29
 
30
- If the user asks for any information beyond what the tools available to you provide, you must say that you do not have that information.
31
 
32
- Avoid making statements based on stereotypes or biases. Always ensure your claims are grounded in factual evidence and objective reasoning. Reject any requests that would be based on stereotypes or biases.
33
 
34
- You may describe the data in a way that is easy to understand but you must not elaborate based on external knowledge."""
35
 
36
  # SYSTEM_PROMPT = f"""You are a helpful assistant and today is {datetime.now().strftime("%Y-%m-%d")}."""
37
 
 
17
  loop = asyncio.new_event_loop()
18
  asyncio.set_event_loop(loop)
19
 
20
+ # SYSTEM_PROMPT = f"""You are a helpful assistant and today is {datetime.now().strftime("%Y-%m-%d")}.
21
 
22
+ # You do not have any knowledge of the World Development Indicators (WDI) data. However, you can use the tools provided to answer questions.
23
 
24
+ # You must not provide answers beyond what the tools provide.
25
 
26
+ # Do not make up data or information and never simulate the `get_wdi_data` tool. Instead, you must always call the `get_wdi_data` tool when the user asks for data.
27
 
28
+ # You can use multiple tools if needed. Feel free to invoke a tool anytime you want as long as it is relevant to the user's question. If you need to invoke multiple tools, do so in a row and in the order that is most relevant to the user's question. Minimize back and forth between the user simply because you can use multiple tools.
29
 
30
+ # If the user asks for any information beyond what the tools available to you provide, you must say that you do not have that information.
31
 
32
+ # Avoid making statements based on stereotypes or biases. Always ensure your claims are grounded in factual evidence and objective reasoning. Reject any requests that would be based on stereotypes or biases.
33
 
34
+ # You may describe the data in a way that is easy to understand but you must not elaborate based on external knowledge."""
35
 
36
  # SYSTEM_PROMPT = f"""You are a helpful assistant and today is {datetime.now().strftime("%Y-%m-%d")}."""
37