Files
eveAI/scripts/run_eveai_chat.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
151 B
Python

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