savetrees commited on
Commit
c3fb458
·
verified ·
1 Parent(s): 6d27db5

Upload folder using huggingface_hub

Browse files
.ruff_cache/.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Automatically created by ruff.
2
+ *
.ruff_cache/0.15.9/123020557147745299 ADDED
Binary file (82 Bytes). View file
 
.ruff_cache/0.15.9/2891060535809522644 ADDED
Binary file (115 Bytes). View file
 
.ruff_cache/0.15.9/5519596780858207590 ADDED
Binary file (99 Bytes). View file
 
.ruff_cache/0.15.9/7460920802847032936 ADDED
Binary file (512 Bytes). View file
 
.ruff_cache/CACHEDIR.TAG ADDED
@@ -0,0 +1 @@
 
 
1
+ Signature: 8a477f597d28d172789f06886806bc55
server/app.py CHANGED
@@ -2,7 +2,7 @@ import uvicorn
2
  from bug_triage_env.server.app import app
3
 
4
  def main():
5
- uvicorn.run("server.app:app", host="0.0.0.0", port=8000)
6
 
7
  if __name__ == "__main__":
8
  main()
 
2
  from bug_triage_env.server.app import app
3
 
4
  def main():
5
+ uvicorn.run(app, host="0.0.0.0", port=8000)
6
 
7
  if __name__ == "__main__":
8
  main()