We still don't have any documentation and things are in flux, but you can report your OpenAI API calls to OpenPipe now.
36 lines
718 B
TOML
36 lines
718 B
TOML
[tool.poetry]
|
|
name = "openpipe"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Kyle Corbitt <kyle@corbt.com>"]
|
|
license = "Apache-2.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
openai = "^0.27.8"
|
|
httpx = "^0.24.1"
|
|
attrs = "^23.1.0"
|
|
python-dateutil = "^2.8.2"
|
|
toml = "^0.10.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
openapi-python-client = "^0.15.0"
|
|
black = "^23.7.0"
|
|
isort = "^5.12.0"
|
|
autoflake = "^2.2.0"
|
|
pytest = "^7.4.0"
|
|
python-dotenv = "^1.0.0"
|
|
pytest-asyncio = "^0.21.1"
|
|
pytest-watch = "^4.2.0"
|
|
pytest-testmon = "^2.0.12"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
markers = "focus"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|