david-oplatka commited on
Commit
fbdf17d
·
1 Parent(s): 8dcd782

Add UDF Rerank and Update Instructions

Browse files
Files changed (1) hide show
  1. agent.py +14 -27
agent.py CHANGED
@@ -41,38 +41,23 @@ def create_assistant_tools(cfg):
41
  returns a response to a user question about customer complaints for bank services.
42
  """,
43
  tool_args_schema = QueryCFPBComplaints,
44
- reranker = "multilingual_reranker_v1", rerank_k = 100,
 
 
 
 
 
 
 
 
 
 
 
45
  n_sentences_before = 2, n_sentences_after = 2, lambda_val = 0.005,
46
- summary_num_results = 30,
47
- mmr_diversity_bias = 0.4,
48
  vectara_summarizer = summarizer,
49
  include_citations = True,
50
  )
51
 
52
- # ask_complaints = vec_factory.create_rag_tool(
53
- # tool_name = "ask_complaints",
54
- # tool_description = """
55
- # Given a user query,
56
- # returns a response to a user question about customer complaints for bank services.
57
- # """,
58
- # tool_args_schema = QueryCFPBComplaints,
59
- # reranker = "chain", rerank_k = 100,
60
- # rerank_chain = [
61
- # {
62
- # "type": "slingshot",
63
- # "cutoff": 0.2
64
- # },
65
- # {
66
- # "type": "mmr",
67
- # "diversity_bias": 0.4,
68
- # "limit": 30
69
- # }
70
- # ],
71
- # n_sentences_before = 2, n_sentences_after = 2, lambda_val = 0.005,
72
- # vectara_summarizer = summarizer,
73
- # include_citations = True,
74
- # )
75
-
76
  tools_factory = ToolsFactory()
77
 
78
  db_tools = tools_factory.database_tools(
@@ -93,6 +78,8 @@ def initialize_agent(_cfg, agent_progress_callback=None):
93
  with expertise in finance and complaints from the CFPB (Consumer Financial Protection Bureau),
94
  in conversation with a user.
95
  - For analytical/numeric questions, try to use the cfpb_load_data and other database tools.
 
 
96
  - Never discuss politics, and always respond politely.
97
  """
98
 
 
41
  returns a response to a user question about customer complaints for bank services.
42
  """,
43
  tool_args_schema = QueryCFPBComplaints,
44
+ reranker = "chain", rerank_k = 100,
45
+ rerank_chain = [
46
+ {
47
+ "type": "slingshot",
48
+ "cutoff": 0.2
49
+ },
50
+ {
51
+ "type": "mmr",
52
+ "diversity_bias": 0.4,
53
+ "limit": 30
54
+ }
55
+ ],
56
  n_sentences_before = 2, n_sentences_after = 2, lambda_val = 0.005,
 
 
57
  vectara_summarizer = summarizer,
58
  include_citations = True,
59
  )
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  tools_factory = ToolsFactory()
62
 
63
  db_tools = tools_factory.database_tools(
 
78
  with expertise in finance and complaints from the CFPB (Consumer Financial Protection Bureau),
79
  in conversation with a user.
80
  - For analytical/numeric questions, try to use the cfpb_load_data and other database tools.
81
+ - For questions about customers' complaints (the text of the complaint), use the ask_complaints tool.
82
+ Do not include the "References" section in your response.
83
  - Never discuss politics, and always respond politely.
84
  """
85