mirror of
https://github.com/pese-git/llm-arch-research.git
synced 2026-01-23 21:10:54 +00:00
feat: initial project setup with LLM architecture and HF integration
- Add LLM library with GPT model implementation - Add hf-proxy for HuggingFace integration - Add experiments for training and generation - Add comprehensive documentation and examples - Configure uv workspace with proper dependencies
This commit is contained in:
18
hf-proxy/pyproject.toml
Normal file
18
hf-proxy/pyproject.toml
Normal file
@@ -0,0 +1,18 @@
|
||||
[project]
|
||||
name = "hf-proxy"
|
||||
version = "0.1.0"
|
||||
description = "HuggingFace adapter for custom LLM models"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "Sergey Penkovsky", email = "sergey.penkovsky@gmail.com" }
|
||||
]
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"torch>=2.3.0",
|
||||
"transformers>=4.44.0",
|
||||
"datasets>=2.20.0",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["uv_build>=0.8.22,<0.9.0"]
|
||||
build-backend = "uv_build"
|
||||
Reference in New Issue
Block a user