File size: 167 Bytes
ff0e97f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
"""
Entry point for running langgraph_agent as a module.
Allows: python -m langgraph_agent [command]
"""
from .main import main

if __name__ == "__main__":
    main()