-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
42 lines (34 loc) · 1.07 KB
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
[project]
name = "llm-lmstudio"
version = "0.2.0"
description = "LLM plugin for models served by LMStudio (local LLM studio HTTP API)"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Agusti" }]
requires-python = ">=3.10"
dependencies = [
"llm>=0.23", # Ensure a recent version of the LLM CLI library
"requests>=2.0", # HTTP library for API calls
"httpx>=0.20" # HTTP library for async API calls
]
[project.urls]
Homepage = "https://github.com/agustif/llm-lmstudio"
Issues = "https://github.com/agustif/llm-lmstudio/issues"
CI = "https://github.com/agustif/llm-lmstudio/actions"
Changelog = "https://github.com/agustif/llm-lmstudio/releases"
[project.entry-points.llm]
lmstudio = "llm_lmstudio"
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
"pytest-mock",
"pytest-vcr"
]
[build-system]
requires = ["setuptools>=62.3.2"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
markers = [
"vcr: mark test to use VCR for HTTP request recording"
]
asyncio_default_fixture_loop_scope = "function"