Files
letta-server/letta/main.py
Kian Jones b8e9a80d93 merge this (#4759)
* wait I forgot to comit locally

* cp the entire core directory and then rm the .git subdir
2025-09-17 15:47:40 -07:00

15 lines
317 B
Python

import os
import typer
from letta.cli.cli import server
from letta.cli.cli_load import app as load_app
# disable composio print on exit
os.environ["COMPOSIO_DISABLE_VERSION_CHECK"] = "true"
app = typer.Typer(pretty_exceptions_enable=False)
app.command(name="server")(server)
app.add_typer(load_app, name="load")