Spaces:
Runtime error
Runtime error
Cascade Bot
commited on
Commit
·
ccf96e3
1
Parent(s):
3feffc7
fix: add missing os import in app.py
Browse files- Added os import to fix NameError when accessing environment variables
- Required for REQUESTS_TIMEOUT environment variable
app.py
CHANGED
@@ -8,6 +8,7 @@ Provides a chat interface to interact with the autonomous agent teams:
|
|
8 |
- Team D: Crypto & Sports Trading
|
9 |
"""
|
10 |
|
|
|
11 |
import gradio as gr
|
12 |
from fastapi import FastAPI, HTTPException
|
13 |
from fastapi.middleware.cors import CORSMiddleware
|
|
|
8 |
- Team D: Crypto & Sports Trading
|
9 |
"""
|
10 |
|
11 |
+
import os
|
12 |
import gradio as gr
|
13 |
from fastapi import FastAPI, HTTPException
|
14 |
from fastapi.middleware.cors import CORSMiddleware
|