-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
75 lines (70 loc) · 1.43 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "llm-client"
description = "SDK for using LLM"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Uri Peled", email = "[email protected]" },
]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"aiohttp >=3.0.0,<4.0.0",
"dataclasses_json >= 0.5.0"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/uripeled2/llm-client-sdk"
[project.optional-dependencies]
test = [
"pytest",
"pytest-aiohttp",
"pytest-asyncio",
"pytest-mock",
"aioresponses"
]
openai = [
"openai >=0.27.4",
"tiktoken >=0.3.3",
]
huggingface = [
"transformers >= 4.0.0"
]
anthropic = [
"anthropic >= 0.3.2"
]
google = [
"google-generativeai >= 0.1.0"
]
api = [
"llm-client[openai,huggingface,anthropic,google]"
]
local = [
"transformers >= 4.0.0"
]
sync = [
"async_to_sync >= 0.2.0"
]
all = [
"llm-client[api,local,sync]"
]
[tool.hatch.version]
path = "llm_client/__init__.py"
[tool.coverage.run]
parallel = true
source = [
"tests",
"llm_client"
]
context = '${CONTEXT}'