llm-workshop/pyproject.toml

18 lines
425 B
TOML

[project]
name = "llm-workshop"
version = "0.1.0"
description = "CHEG 667-013 LLMs for Engineers workshop"
requires-python = ">=3.10"
dependencies = [
"numpy",
"torch",
"matplotlib",
"llama-index-core",
"llama-index-readers-file",
"llama-index-llms-ollama",
"llama-index-embeddings-huggingface",
"llama-index-retrievers-bm25",
"python-dateutil",
"nltk",
"sentence-transformers",
]