AmandaHydar commited on
Commit
cca63f7
·
1 Parent(s): c0e7d70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -59,8 +59,8 @@ if api_key:
59
  if index is None:
60
  st.warning("Please enter your api key first.")
61
 
62
- text = st.text_input("Query text:", value="Insert PQL here to generate Definitions?")
63
- sub_prompt_instruction = "For the provided list of PQL queries, write the definition for each one. Format the response for readability. For example, if given this string: QUERY: COUNT_TABLE(\"_CEL_AP_ACTIVITIES\"), return a formatted answer like this: DEFINITION: Get a full count of the activities table. , QUERY: COUNT_TABLE(\"_CEL_AP_ACTIVITIES\") Each definition and corresponding query should be on its own line for readability."
64
 
65
 
66
 
 
59
  if index is None:
60
  st.warning("Please enter your api key first.")
61
 
62
+ text = st.text_input("Query text:", value="Insert PQL here to generate Definitions or ask a PQL related question")
63
+ sub_prompt_instruction = "For the provided list of PQL queries, write the definition for each one. For example, if given this string: QUERY: COUNT_TABLE(\"_CEL_AP_ACTIVITIES\"), return a formatted answer with definition and corresponding query each on its own line and numerized as a list like this: 1.) DEFINITION: Get a full count of the activities table. QUERY: COUNT_TABLE(\"_CEL_AP_ACTIVITIES\") "
64
 
65
 
66