Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
# TODO:
|
2 |
#
|
3 |
-
# 1.
|
4 |
-
# 2.
|
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
|
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,
|