-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
29 lines (25 loc) · 939 Bytes
/
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
[tool.poetry]
name = "local-llm-function-calling"
version = "0.1.23"
description = "A tool for generating function arguments and choosing what function to call with local LLMs"
authors = ["rizerphe <44440399+rizerphe@users.noreply.github.com>"]
readme = "README.md"
homepage = "https://github.com/rizerphe/local-llm-function-calling"
documentation = "https://local-llm-function-calling.readthedocs.io/"
keywords = ["llm", "jsonschema", "huggingface", "transformers", "local", "llama.cpp"]
license = "MIT"
packages = [
{include = "local_llm_function_calling"},
{include = "local_llm_function_calling/py.typed"},
]
[tool.poetry.dependencies]
python = "^3.11"
transformers = "^4.30.2"
json-schema-enforcer = "^0.1.3"
torch = "^2.0.1"
llama-cpp-python = {version = "^0.1.83", optional = true}
[tool.poetry.extras]
llama-cpp = ["llama-cpp-python"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"