acecalisto3 commited on
Commit
6a1203c
1 Parent(s): d4d66f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,7 +45,7 @@ I am confident that I can leverage my expertise to assist you in developing and
45
  Autonomous build logic that continues based on the state of chat history and workspace projects.
46
  """
47
  summary = "Chat History:\n" + "\n".join([f"User: {u}\nAgent: {a}" for u, a in chat_history])
48
- summary += "\n\nWorkspace Projects:\n" + "\n.join([f"{p}: {details}" for p, details in workspace_projects.items()])
49
 
50
  next_step = "Based on the current state, the next logical step is to implement the main application logic."
51
 
 
45
  Autonomous build logic that continues based on the state of chat history and workspace projects.
46
  """
47
  summary = "Chat History:\n" + "\n".join([f"User: {u}\nAgent: {a}" for u, a in chat_history])
48
+ summary += "\n\nWorkspace Projects:\n" + "\n".join([f"{p}: {details}" for p, details in workspace_projects.items()])
49
 
50
  next_step = "Based on the current state, the next logical step is to implement the main application logic."
51