Teerth Patel commited on
Commit
6f00de1
·
1 Parent(s): d67cfbf

Change formatting

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -51,7 +51,7 @@ class SessionInfo:
51
  session_info = SessionInfo()
52
 
53
  def info_to_message(info):
54
- msg = ""
55
  for k, v in info.items():
56
  if isinstance(v, dict):
57
  tempv = v
@@ -60,7 +60,6 @@ def info_to_message(info):
60
  v += f"{k2}:\n {v2}\n"
61
  v = User.indent_text(v, 2)
62
  msg += '-' * 64
63
- msg += '\n'
64
  msg += f"{k}:\n{v}\n"
65
 
66
  msg += "Please provide feedback based on the history, response entries, and observation, and questions: "
 
51
  session_info = SessionInfo()
52
 
53
  def info_to_message(info):
54
+ msg = "Agent Response:\n"
55
  for k, v in info.items():
56
  if isinstance(v, dict):
57
  tempv = v
 
60
  v += f"{k2}:\n {v2}\n"
61
  v = User.indent_text(v, 2)
62
  msg += '-' * 64
 
63
  msg += f"{k}:\n{v}\n"
64
 
65
  msg += "Please provide feedback based on the history, response entries, and observation, and questions: "