mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-07 08:26:06 +00:00
[feature] update the poetry configuration file, add dev dependency
This commit is contained in:
parent
53c8686792
commit
27f1671841
2 changed files with 2698 additions and 2 deletions
2669
poetry.lock
generated
Normal file
2669
poetry.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,19 +1,46 @@
|
|||
[tool.poetry]
|
||||
name = "memoryscope"
|
||||
name = "memory_scope"
|
||||
version = "0.1.0"
|
||||
description = "MemoryScope for LLM Agentic Application."
|
||||
authors = ["Your Name <you@example.com>"]
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
keywords = ["Memory", "LLM"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
llama-index-core = "0.10.45"
|
||||
llama-index-core = "0.10.44"
|
||||
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"
|
||||
pyfiglet = ">=1.0.2,<1.1.0"
|
||||
termcolor = ">=2.4.0,<2.5.0"
|
||||
llama-index = "0.10.45"
|
||||
fire = "0.6.0"
|
||||
questionary = "2.0.1"
|
||||
requests = ">=2.31.0,<2.32.0"
|
||||
pydantic = ">=2.7.1,<2.8.0"
|
||||
dashscope = ">=1.19.1,<1.20.0"
|
||||
elasticsearch = ">=8.14.0,<8.15.0"
|
||||
pyyaml = ">=6.0.1,<6.1.0"
|
||||
ray = ">=2.31.0,<2.32.0"
|
||||
numpy = ">=1.26.4,<1.27.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pre-commit = "^3.7.1"
|
||||
codespell = "^2.3.0"
|
||||
|
||||
[tool.codespell]
|
||||
check-filenames = true
|
||||
check-hidden = true
|
||||
ignore-words-list = "astroid,gallary,momento,narl,ot,rouge"
|
||||
skip = "./examples,*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb"
|
||||
|
||||
[[tool.poetry.source]]
|
||||
name = "aliyun"
|
||||
url = "http://mirrors.aliyun.com/pypi/simple/"
|
||||
priority = "supplemental"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue