Template
8 lines
131 B
Python
8 lines
131 B
Python
from src.core.agent import handle
|
|
|
|
def main() -> None:
|
|
print(handle("offline example"))
|
|
|
|
if __name__ == "__main__":
|
|
main()
|