Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,16 @@
|
|
1 |
-
#
|
2 |
-
#
|
3 |
-
#
|
4 |
-
#
|
5 |
-
#
|
6 |
-
|
|
|
|
|
|
|
7 |
# https://platform.openai.com/playground/assistants
|
8 |
-
# https://platform.openai.com/docs/api-reference/assistants/createAssistant
|
9 |
-
# https://platform.openai.com/docs/assistants/tools/code-interpreter
|
10 |
# https://cookbook.openai.com/examples/assistants_api_overview_python
|
|
|
|
|
11 |
|
12 |
import gradio as gr
|
13 |
import datetime, openai, os, time
|
|
|
1 |
+
# TODO:
|
2 |
+
#
|
3 |
+
# 1. Multi-user thread
|
4 |
+
# 2. Tools: Code interpreter - https://platform.openai.com/docs/assistants/tools/code-interpreter - Matlplotlib chart
|
5 |
+
# 3. Tools: Function calling - https://platform.openai.com/docs/assistants/tools/function-calling
|
6 |
+
|
7 |
+
# Reference:
|
8 |
+
#
|
9 |
+
# https://vimeo.com/990334325/56b552bc7a
|
10 |
# https://platform.openai.com/playground/assistants
|
|
|
|
|
11 |
# https://cookbook.openai.com/examples/assistants_api_overview_python
|
12 |
+
# https://platform.openai.com/docs/api-reference/assistants/createAssistant
|
13 |
+
# https://platform.openai.com/docs/assistants/tools
|
14 |
|
15 |
import gradio as gr
|
16 |
import datetime, openai, os, time
|