mirror of
https://github.com/cpacker/MemGPT.git
synced 2025-06-03 04:30:22 +00:00

Co-authored-by: Andy Li <55300002+cliandy@users.noreply.github.com> Co-authored-by: Kevin Lin <klin5061@gmail.com> Co-authored-by: Sarah Wooders <sarahwooders@gmail.com> Co-authored-by: jnjpng <jin@letta.com> Co-authored-by: Matthew Zhou <mattzh1314@gmail.com>
15 lines
317 B
Python
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")
|