17 lines
211 B
Python
17 lines
211 B
Python
import asyncio
|
|
|
|
from agent.loop import run_session
|
|
|
|
|
|
async def run_tui():
|
|
await run_session()
|
|
|
|
|
|
def main():
|
|
print("Hello from mycode!")
|
|
asyncio.run(run_tui())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|