Spaces:
Build error
Build error
acecalisto3
commited on
Commit
•
02cd72a
1
Parent(s):
c2ac680
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,21 @@ import sys
|
|
10 |
import re
|
11 |
from typing import List, Dict
|
12 |
from streamlit_jupyter import StreamlitPatcher, tqdm
|
13 |
-
from agents import
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
# This line should be at the top of your script
|
16 |
StreamlitPatcher().jupyter() # This patches Streamlit to work in Jupyter
|
|
|
10 |
import re
|
11 |
from typing import List, Dict
|
12 |
from streamlit_jupyter import StreamlitPatcher, tqdm
|
13 |
+
from agents import (
|
14 |
+
TextGenerationTool,
|
15 |
+
AIAgent,
|
16 |
+
process_input,
|
17 |
+
run_code,
|
18 |
+
workspace_interface,
|
19 |
+
add_code_to_workspace,
|
20 |
+
display_chat_history,
|
21 |
+
display_workspace_projects,
|
22 |
+
generate_space_content,
|
23 |
+
analyze_code,
|
24 |
+
get_code_completion,
|
25 |
+
lint_code,
|
26 |
+
format_code
|
27 |
+
)
|
28 |
|
29 |
# This line should be at the top of your script
|
30 |
StreamlitPatcher().jupyter() # This patches Streamlit to work in Jupyter
|