diff --git a/docs/__init__.py b/docs/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/pyproject.toml b/pyproject.toml index e69de29b..4d2eb68d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "memoryscope" +version = "0.1.0" +description = "MemoryScope for LLM Agentic Application." +authors = ["Your Name "] +license = "MIT" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +llama-index-core = "0.10.45" +llama-index-embeddings-dashscope = "0.1.3" +llama-index-llms-dashscope = "0.1.2" +llama-index-postprocessor-dashscope-rerank-custom = "0.1.0" +llama-index-vector-stores-elasticsearch = "0.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"