Spaces:
Sleeping
Sleeping
OpenClaw commited on
Commit ·
07bf7b7
1
Parent(s): 066fa2e
Fix: add missing Response import
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ import httpx
|
|
| 5 |
from typing import Dict
|
| 6 |
|
| 7 |
from fastapi import FastAPI, Request, HTTPException
|
| 8 |
-
from fastapi.responses import JSONResponse, StreamingResponse
|
| 9 |
|
| 10 |
app = FastAPI()
|
| 11 |
|
|
|
|
| 5 |
from typing import Dict
|
| 6 |
|
| 7 |
from fastapi import FastAPI, Request, HTTPException
|
| 8 |
+
from fastapi.responses import JSONResponse, StreamingResponse, Response
|
| 9 |
|
| 10 |
app = FastAPI()
|
| 11 |
|