Files
instructor/pyproject.toml
T
Alexander Dicke 6d0a1a06a0 Docstring parsing (#83)
* adds description for params

* add test for missing param description

* adds docstring parsing to OpenAISchema

* docs

* fix tests, highlighting

---------

Co-authored-by: Jason Liu <jxnl@users.noreply.github.com>
2023-08-23 23:58:10 -07:00

31 lines
737 B
TOML

[tool.poetry]
name = "instructor"
version = "0.2.5"
description = "Helper functions that allow us to improve openai's function_call ergonomics"
authors = ["Jason <jason@jxnl.co>"]
license = "MIT"
readme = "README.md"
packages = [{include = "instructor"}]
repository = "https://github.com/jxnl/instructor"
[tool.poetry.dependencies]
python = "^3.9"
openai = "^0.27.8"
pydantic = "^2.0.2"
docstring-parser = "^0.15"
typer = "^0.4.0"
[tool.poetry.scripts]
instructor = "instructor.cli.cli:app"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
mkdocs = "^1.4.3"
mkdocs-material = "^9.1.18"
mkdocstrings = "^0.22.0"
mkdocstrings-python = "^1.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"