You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/any_chatbot/agent.py
+5-11Lines changed: 5 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -16,21 +16,15 @@
16
16
17
17
18
18
defparse_args() ->argparse.Namespace:
19
-
"""Parse command-line arguments for training and evaluation."""
20
19
p=argparse.ArgumentParser()
21
20
22
21
p.add_argument(
23
22
"--ask",
24
23
type=str,
25
24
default=(
26
-
"What kinds (images, text docs, or excel sheets) are available in the documents I have provided to you? Use the functional call to retrieve information for each type first.\n\n"
27
-
# "What colums does the excel have? once you found the answer, tell me there types too.\n\n"
28
-
# "Once you have that answer, I want you to calculate the median for each column.\n\n"
29
-
"When you don't know while files the user is talking about, use the functional call to retrieve what data is available with a general prompt.\n\n"
30
-
"You can refine your semantic search queries and try multiple times with different queries until you resonably determine the data is not available on the given documents.\n\n"
31
-
"Base your answers only on the retrieved information thorugh the functional call you have. You can retreive MULTIPLE TIMES"
25
+
"What kinds (text docs, images, or excel sheets) are available in the documents I have provided to you?\n\n"
0 commit comments