bstraehle commited on
Commit
52ae7e3
1 Parent(s): da3afee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +1,7 @@
1
  # TODO:
2
  #
3
- # 1. Multi-user thread
4
- # 2. Tools: Function calling - https://platform.openai.com/docs/assistants/tools/function-calling
5
 
6
  # Reference:
7
  #
@@ -169,7 +169,7 @@ gr.ChatInterface(
169
  chatbot=gr.Chatbot(height=350),
170
  textbox=gr.Textbox(placeholder="Ask anything", container=False, scale=7),
171
  title="Python Code Generator",
172
- description="The assistant can generate code, explain, fix, optimize, document, test, and generally help with code. It can also execute code.",
173
  clear_btn="Clear",
174
  retry_btn=None,
175
  undo_btn=None,
 
1
  # TODO:
2
  #
3
+ # 1. Gradio session / multi-user thread
4
+ # 2. Function calling / Tavily API - https://platform.openai.com/docs/assistants/tools/function-calling
5
 
6
  # Reference:
7
  #
 
169
  chatbot=gr.Chatbot(height=350),
170
  textbox=gr.Textbox(placeholder="Ask anything", container=False, scale=7),
171
  title="Python Code Generator",
172
+ description="The assistant can generate, explain, fix, optimize, document, and test code. It can also execute code.",
173
  clear_btn="Clear",
174
  retry_btn=None,
175
  undo_btn=None,