mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(embedding): update embedding model initialization and session storage paths - Remove unused inspect import from as_embedding module - Pass dimensions directly to embedding model constructor instead of using parameters - Update session state file paths to use mem_session directory instead of resource - Add mem_session_dir configuration option to application config schema - Update workspace directory creation to include new mem_session directory - Change AgentScope and Claude Code session paths to use mem_session directory - Move embedding dimensions from parameters to top-level configuration - Update AgentScope dependency version from 2.0.3 to 2.0.4 - Update integration tests to reflect new session file location paths * chore(version): bump version to 0.4.0.8 - Update __version__ from 0.4.0.7 to 0.4.0.8 in __init__.py
90 lines
2.1 KiB
TOML
90 lines
2.1 KiB
TOML
[project]
|
|
name = "reme-ai"
|
|
dynamic = ["version"]
|
|
description = "Remember Me, Refine Me."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "EconML team of Alibaba Tongyi Lab", email = "jinli.yl@alibaba-inc.com" },
|
|
]
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.11"
|
|
keywords = ["llm", "memory", "agent", "agentscope", "ai", "mcp", "reme"]
|
|
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Operating System :: OS Independent",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
]
|
|
|
|
dependencies = [
|
|
"aiofiles>=24.1.0",
|
|
"croniter>=2.0",
|
|
"fastapi>=0.135.1",
|
|
"fastmcp>=3.1.0",
|
|
"httpx>=0.28.1",
|
|
"loguru>=0.7.3",
|
|
"mistletoe>=1.5.1",
|
|
"numpy>=2.2.6",
|
|
"openai>=2.26.0",
|
|
"psutil>=5.9",
|
|
"pydantic>=2.12.5",
|
|
"python-frontmatter>=1.1.0",
|
|
"pyyaml>=6.0.3",
|
|
"rich>=14.3.3",
|
|
"uvicorn>=0.41.0",
|
|
"watchfiles>=1.1.1",
|
|
"zstandard>=0.23.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
core = [
|
|
"agentscope==2.0.4",
|
|
"claude-agent-sdk>=0.2.91",
|
|
"faiss-cpu>=1.13.2",
|
|
"jieba>=0.42.1",
|
|
"rjieba>=0.2.1",
|
|
"neo4j>=6.2.0",
|
|
"networkx>=3.4.2",
|
|
]
|
|
dev = [
|
|
"pre-commit",
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
]
|
|
full = [
|
|
"reme-ai[core]",
|
|
"reme-ai[dev]",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/agentscope-ai/ReMe"
|
|
Documentation = "https://reme.agentscope.io/"
|
|
Repository = "https://github.com/agentscope-ai/ReMe"
|
|
|
|
[project.scripts]
|
|
reme = "reme.reme:main"
|
|
|
|
[tool.setuptools]
|
|
packages = { find = { where = ["."], include = ["reme*"] } }
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed", "**/*.yaml", "**/*.json"]
|
|
"reme.components.tokenizer" = ["stopwords"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = { attr = "reme.__version__" }
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_functions = ["test_*"]
|