-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
24 lines (21 loc) · 866 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pydantic_chatcompletion"
version = "0.0.3"
authors = [
{ name="Bill Kish", email="bk@jiggy.ai" },
]
dependencies=['openai', 'pydantic']
description = "Wrapper around OpenAI ChatCompletion that compels the language model to produce a valid Pydantic model as output via prompting and iterative error remediation. The easiest way to go from unstructured text to structured Pydantic data."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/jiggy-ai/pydantic-chatcompletion"
"Bug Tracker" = "https://github.com/jiggy-ai/pydantic-chatcompletion/issues"