diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-03-18 18:25:09 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-03-18 18:25:09 -0500 |
| commit | b6c3e4e51eeab703b40284459c6e9fff2151216c (patch) | |
| tree | 221410886f23214575f93b9ef44fa8431c9a6dfc /pyproject.toml | |
Initial release: VARS - personalized LLM with RAG and user vector learning
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a76f9bb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,38 @@ +[ +tool.black +] + +[build-system] +requires = ["hatchling>=1.18"] +build-backend = "hatchling.build" + +[project] +name = "personalization-user-model" +version = "0.1.0" +description = "Personalized memory RAG system with online user modeling" +readme = "README.md" +requires-python = ">=3.10" +license = { text = "Apache-2.0" } +authors = [ + { name = "Anonymous" } +] +dependencies = [ + "torch>=2.3.0", + "transformers>=4.44.0", + "accelerate>=0.33.0", + "huggingface_hub>=0.24.0", + "pydantic>=2.7.0", + "pyyaml>=6.0.0", + "safetensors>=0.4.2" +] + +[project.urls] +homepage = "https://example.com" + +[tool.hatch.build.targets.wheel] +packages = ["src/personalization"] + +[tool.hatch.metadata] +allow-direct-references = true + + |
