Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -65,3 +65,9 @@ async def chunk_text(data: ChunkRequest):
|
|
65 |
}
|
66 |
except Exception as e:
|
67 |
return {"error": str(e)}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
}
|
66 |
except Exception as e:
|
67 |
return {"error": str(e)}
|
68 |
+
|
69 |
+
|
70 |
+
if __name__ == "__main__":
|
71 |
+
import uvicorn
|
72 |
+
uvicorn.run("app:app", host="0.0.0.0", port=80)
|
73 |
+
|