CultriX commited on
Commit
ac407f6
·
verified ·
1 Parent(s): d3451c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -9
app.py CHANGED
@@ -256,15 +256,13 @@ iface = gr.ChatInterface(
256
  additional_inputs=[gr.Textbox(label="OpenAI API Key (optional)", type="password", placeholder="Leave blank to use env variable")],
257
  type="messages",
258
  title="Actual Multi-Agent Conversation Chatbot",
259
- description="""Collaborative workflow between Primary, Critic, and Documentation agents:
260
- "1. Enter a task and observe as your prompt gets magically improved by the Prompt-Enhancing agent before reaching the
261
- 2. Orchestrator, who then devises a plan and enlists the assistance of a
262
- 3. Coder agent that writes code which is iteratively improved upon thanks to the
263
- 4. Code Reviewer who finally decides if the code should be approved and get sent off to the
264
- 5. Code Documentation Generator that will write documentation for your freshly generated code!"
265
- "NOTE: The full conversation log will be displayed at the end, showing all the steps taken!"
266
- "NOTE2: If the Coder is unable to satisfactorily complete the task after five attempts, the script will terminate to prevent endless iterations.
267
- "NOTE3: You will have to input your OPENAI_API_KEY at the bottom of the page for this to work!"""
268
  )
269
 
270
  if __name__ == "__main__":
 
256
  additional_inputs=[gr.Textbox(label="OpenAI API Key (optional)", type="password", placeholder="Leave blank to use env variable")],
257
  type="messages",
258
  title="Actual Multi-Agent Conversation Chatbot",
259
+ description="""
260
+ - Collaborative workflow between Prompt Enhancer, Orchestrator, Coder, Code-Reviewer and Documentation Generator agents.
261
+ - Enter a task and observe as your prompt gets magically solved! :)
262
+ - NOTE: The full conversation log will be displayed at the end, showing all the steps taken!
263
+ - NOTE2: If the Coder is unable to satisfactorily complete the task after five attempts, the script will terminate to prevent endless iterations.
264
+ - NOTE3: You will have to input your OPENAI_API_KEY at the bottom of the page for this to work!
265
+ """
 
 
266
  )
267
 
268
  if __name__ == "__main__":