Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,6 +19,10 @@ from agent import (
|
|
| 19 |
UNDERSTAND_TEST_RESULTS_PROMPT,
|
| 20 |
)
|
| 21 |
from utils import parse_action, parse_file_content, read_python_module_structure
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
client = InferenceClient(
|
| 23 |
"mistralai/Mixtral-8x7B-Instruct-v0.1"
|
| 24 |
)
|
|
|
|
| 19 |
UNDERSTAND_TEST_RESULTS_PROMPT,
|
| 20 |
)
|
| 21 |
from utils import parse_action, parse_file_content, read_python_module_structure
|
| 22 |
+
from datetime import datetime
|
| 23 |
+
now = datetime.now()
|
| 24 |
+
date_time_str = now.strftime("%Y-%m-%d %H:%M:%S")
|
| 25 |
+
|
| 26 |
client = InferenceClient(
|
| 27 |
"mistralai/Mixtral-8x7B-Instruct-v0.1"
|
| 28 |
)
|