Files
letta-server/pyproject.toml
Vivian Fang 8c3409cf02 Revert "cleanup"
This reverts commit 85d9fba811f237fc0c625e920d4ee5995a9308f6, reversing
changes made to a7e06d0acc1b69b311fb16e386c4867337fe76f8.
2023-10-25 01:02:43 -07:00

38 lines
859 B
TOML

[tool.poetry]
name = "pymemgpt"
version = "0.1.0"
packages = [
{include = "memgpt"}
]
description = "Teaching LLMs memory management for unbounded context"
authors = [
"Charles Packer <contact@charlespacker.com>",
"Vivian Fang <hi@vivi.sh>",
"Sarah Wooders <sarahwooders@gmail.com>",
"Shishir Patil <shishirpatil@berkeley.edu>",
"Kevin Lin <kevinlin@eecs.berkeley.edu>"
]
license = "Apache License"
readme = "README.md"
[tool.poetry.scripts]
memgpt = "memgpt.main:app"
[tool.poetry.dependencies]
python = "<3.13,>=3.9"
typer = {extras = ["all"], version = "^0.9.0"}
questionary = "^2.0.1"
demjson3 = "^3.0.6"
numpy = "^1.26.1"
pytz = "^2023.3.post1"
faiss-cpu = "^1.7.4"
tiktoken = "^0.5.1"
pymupdf = "^1.23.5"
tqdm = "^4.66.1"
openai = "^0.28.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"