printf-sourav commited on
Commit
bb5e238
·
1 Parent(s): dc2be62

readme fixed

Browse files
Files changed (2) hide show
  1. README.md +10 -0
  2. app.py +5 -0
README.md CHANGED
@@ -1,3 +1,13 @@
 
 
 
 
 
 
 
 
 
 
1
  # 🤖 DevOps RL Agent
2
 
3
  **An AI agent that learns to fix broken Linux/Python environments through reinforcement learning.**
 
1
+ ---
2
+ title: DevOps RL Agent
3
+ emoji: 🤖
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: docker
7
+ app_file: app.py
8
+ pinned: false
9
+ ---
10
+
11
  # 🤖 DevOps RL Agent
12
 
13
  **An AI agent that learns to fix broken Linux/Python environments through reinforcement learning.**
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import uvicorn
2
+ from api.main import app
3
+
4
+ if __name__ == "__main__":
5
+ uvicorn.run(app, host="0.0.0.0", port=7860)