From 2afff806ad0cb64aa73f19faf3f42c9f2c0c15c9 Mon Sep 17 00:00:00 2001 From: localsoo Date: Fri, 18 Apr 2025 05:05:09 +0000 Subject: [PATCH] Delete project.toml --- project.toml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 project.toml diff --git a/project.toml b/project.toml deleted file mode 100644 index 3ce0a84..0000000 --- a/project.toml +++ /dev/null @@ -1,34 +0,0 @@ -[tool.poetry] -name = "rag-app" -version = "0.1.0" -description = "RAG with HuggingFace, Weaviate, and LangServe" -authors = ["Your Name "] -readme = "README.md" -packages = [{ include = "your_package" }] # 프로젝트 구조에 맞게 수정 - -[tool.poetry.dependencies] -python = "^3.12" - -# LangChain core & LangServe -langchain = "*" -langserve = "*" - -# LLM: Hugging Face -huggingface-hub = "*" -transformers = "*" - -# Vector DB: Weaviate -weaviate-client = "*" - -# Embeddings -openai = "*" # OpenAIEmbeddings용 -sentence-transformers = "*" # HuggingFaceEmbeddings용 (optional) - -# Dev & Utils -python-dotenv = "*" -typer = { extras = ["all"], version = "*" } -uvicorn = { extras = ["standard"], version = "*" } - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api"