tifkin/NextTokenPrediction
0
1[project]2name = "next-token-prediction"3version = "1.0.0"4description = "Interactive next-token prediction workbench"5readme = "README.md"6requires-python = ">=3.11,<3.12"7dependencies = [8 "fastapi==0.137.2",9 "huggingface-hub==0.36.2",10 "torch==2.3.1+cpu",11 "transformers==4.44.2",12 "uvicorn==0.49.0",13]14 15[project.optional-dependencies]16gguf = [17 "llama-cpp-python==0.3.30",18]19 20[dependency-groups]21dev = [22 "httpx>=0.27.0",23 "pytest>=8.0.0",24]25 26[tool.uv]27package = false28 29[tool.uv.sources]30torch = { index = "pytorch-cpu" }31llama-cpp-python = { index = "llama-cpp-cpu" }32 33[[tool.uv.index]]34name = "pytorch-cpu"35url = "https://download.pytorch.org/whl/cpu"36explicit = true37 38[[tool.uv.index]]39name = "llama-cpp-cpu"40url = "https://abetlen.github.io/llama-cpp-python/whl/cpu"41explicit = true42 43[tool.pytest.ini_options]44pythonpath = ["."]45 