Files
letta-server/letta/cli/cli_load.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

17 lines
319 B
Python

"""
This file contains functions for loading data into Letta's archival storage.
Data can be loaded with the following command, once a load function is defined:
```
letta load <data-connector-type> --name <dataset-name> [ADDITIONAL ARGS]
```
"""
import typer
app = typer.Typer()
default_extensions = "txt,md,pdf"