-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 993 Bytes
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 993 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "prompthound"
version = "0.1.0"
description = "An experimental framework integrating AI into memex methods"
readme = "README.md"
authors = [
{ name = "Brian Dennis", email = "bmd@pirateninja.dev" }
]
requires-python = ">=3.11"
dependencies = [
"click==8.1.8",
"click-default-group",
"click-spinner",
"feedparser",
"htmd-py",
"llm",
"llm-lmstudio @ git+https://github.com/agustif/llm-lmstudio.git",
"llm-mlx",
"lmstudio",
"loguru",
"pluggy",
"pydantic-ai-slim[anthropic,cli,huggingface,openai]",
"sentencepiece",
"ttok",
"typer",
"platformdirs",
"sqlite-utils",
"httpx",
"feedparser",
"unidecode",
"regex",
]
[project.scripts]
prompthound = "prompthound.cli:cli"
[project.optional-dependencies]
test = ["pytest"]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"clai>=0.7.2",
"ptpython",
"pytest>=8.4.1",
]