You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"""mulit_agent development entry point.
|
|
|
|
Run with: python app.py
|
|
For an installed package, use: multiclaw-agent
|
|
"""
|
|
|
|
from mulit_agent_app.main import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|
|
|