-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 823 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
[tool.poetry]
name = "functioncalming"
version = "0.0.24"
description = "Robust and reliable OpenAI tool calling"
authors = ["Philipp Dowling <phdowling@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/phdowling/functioncalming"
repository = "https://github.com/phdowling/functioncalming"
keywords = [
"openai",
"function-calling",
"pydantic",
"validation",
"llm",
"tool-calling",
"retry",
"structured-ouputs"
]
[tool.poetry.dependencies]
python = "^3.12"
openai = ">=2.7.1"
pydantic = ">=2.12.4"
docstring-parser = "^0.17"
pytest-httpx = "^0.35.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-asyncio = "^0.21.1"
python-dotenv = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"