add poetry

This commit is contained in:
Sarah Wooders
2023-10-23 14:11:49 -07:00
parent e44b1e49b1
commit c8e1b61ead
2 changed files with 1143 additions and 0 deletions

1117
poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[tool.poetry]
name = "pymemgpt"
version = "0.1.0"
description = "Teaching LLMs memory management for unbounded context"
authors = ["Sarah Wooders <sarahwooders@gmail.com>"]
license = "Apache License"
readme = "README.md"
[tool.poetry.dependencies]
python = "<3.13,>=3.9"
absl-py = "^2.0.0"
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"