Files
eveAI/scripts/run_eveai_app.py
Josako 7bddeb0ebd - Add configuration of agents, tasks, tools, specialist in context of SPIN specialist
- correct startup of applications using gevent
- introduce startup scripts (eveai_app)
- caching manager for all configurations
2025-01-16 20:27:00 +01:00

9 lines
150 B
Python

from gevent import monkey
monkey.patch_all()
from eveai_app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)