subhdotsol commited on
Commit
f183aea
·
1 Parent(s): 35c659c

feat(app): scaffold FastAPI app with title, version and lifespan hook

Browse files
Files changed (1) hide show
  1. server/app.py +7 -0
server/app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI(
4
+ title = "RedTeamOS",
5
+ description = "AI Red-Teaming Environment for Safety Research",
6
+ version = "0.1.0",
7
+ )