johann22 commited on
Commit
bf1f293
1 Parent(s): 9260c2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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
  )