“Transcendental-Programmer”
commited on
Commit
·
b0741bf
1
Parent(s):
d5422a7
fix : app
Browse files
app.py
CHANGED
@@ -39,6 +39,8 @@ def plot():
|
|
39 |
start_time = time.time()
|
40 |
data = request.json
|
41 |
logging.info(f"Received request data: {data}")
|
|
|
|
|
42 |
|
43 |
response = agent.process_request(data)
|
44 |
|
|
|
39 |
start_time = time.time()
|
40 |
data = request.json
|
41 |
logging.info(f"Received request data: {data}")
|
42 |
+
file_path = data.get('file_path')
|
43 |
+
logging.info(f"File path in plot request: {file_path}")
|
44 |
|
45 |
response = agent.process_request(data)
|
46 |
|