mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
9 lines
147 B
Python
9 lines
147 B
Python
import uvicorn
|
|
|
|
|
|
def main():
|
|
uvicorn.run("atroposlib.api:app", host="0.0.0.0", port=8000, reload=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|