philmui commited on
Commit
f2f63e5
โ€ข
1 Parent(s): 4536af0

outputing salesAgent

Browse files
Files changed (1) hide show
  1. agents.py +2 -2
agents.py CHANGED
@@ -74,10 +74,10 @@ def instructAgent(question_text, model_name):
74
 
75
  if is_magic(question_text, LOCAL_MAGIC_TOKENS):
76
  output = salesAgent(question_text)
77
- print(f"๐Ÿ”น salesAgent")
78
  elif is_magic(question_text, DIGITAL_MAGIC_TOKENS):
79
  output = chinookAgent(question_text, model_name)
80
- print(f"๐Ÿ”น chinookAgent")
81
  else:
82
  try:
83
  instruction = instruct_prompt.format(query=question_text)
 
74
 
75
  if is_magic(question_text, LOCAL_MAGIC_TOKENS):
76
  output = salesAgent(question_text)
77
+ print(f"๐Ÿ”น salesAgent: {output}")
78
  elif is_magic(question_text, DIGITAL_MAGIC_TOKENS):
79
  output = chinookAgent(question_text, model_name)
80
+ print(f"๐Ÿ”น chinookAgent: {output}")
81
  else:
82
  try:
83
  instruction = instruct_prompt.format(query=question_text)