-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "groq-qa-generator"
version = "1.2.1"
description = "Groq QA automates question-answer generation from text with LLaMA 3 and Hugging Face to fine-tune large language models (LLMs)."
authors = ["Jordan Cassady <[email protected]>"]
readme = "README.md"
license = "MIT"
include = [
"src/groq_qa_generator/data/*", # Include all files in the data directory
"src/groq_qa_generator/data/prompts/*", # Include all prompt files
"src/groq_qa_generator/config.json", # Include the configuration file
]
[tool.poetry.dependencies]
python = "^3.10"
tiktoken = "^0.7.0"
groq = "^0.11.0"
python-dotenv = "^1.0.1"
datasets = "^3.0.1"
huggingface-hub = "^0.25.2"
[tool.poetry.scripts]
# Entry point for the command-line interface (CLI) script
groq-qa = "groq_qa_generator.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
black = "^24.8.0"
sphinx = "^8.0.2"
sphinx-rtd-theme = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"