Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,18 +7,16 @@ from safe_search import safe_search
|
|
7 |
from i_search import google
|
8 |
from i_search import i_search as i_s
|
9 |
from agent import (
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
READ_PROMPT,
|
19 |
-
TASK_PROMPT,
|
20 |
-
UNDERSTAND_TEST_RESULTS_PROMPT,
|
21 |
)
|
|
|
22 |
from utils import parse_action, parse_file_content, read_python_module_structure
|
23 |
from datetime import datetime
|
24 |
|
|
|
7 |
from i_search import google
|
8 |
from i_search import i_search as i_s
|
9 |
from agent import (
|
10 |
+
run_agent,
|
11 |
+
create_interface,
|
12 |
+
format_prompt,
|
13 |
+
generate,
|
14 |
+
MAX_HISTORY,
|
15 |
+
client,
|
16 |
+
VERBOSE,
|
17 |
+
date_time_str,
|
|
|
|
|
|
|
18 |
)
|
19 |
+
|
20 |
from utils import parse_action, parse_file_content, read_python_module_structure
|
21 |
from datetime import datetime
|
22 |
|