forked from newrelic/nr-openai-observability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (25 loc) · 948 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
30
[tool.poetry]
name = "nr-openai-observability"
version = "0.1.0"
description = "A lightweight tool to monitor your OpenAI workload."
authors = ["AIR <air-opensource@newrelic.com>"]
repository = "https://github.com/newrelic/nr-openai-observability"
readme = "README.md"
homepage = "https://newrelic.com/instant-observability/openai"
keywords = ["newrelic", "observability", "openai", "gpt", "chatGPT", "GPT-4", "monitor", "generative", "ai"]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
newrelic-telemetry-sdk = "^0.4.0"
openai = ">=0.8,<0.30"
tiktoken = "^0.5.1"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
[tool.poetry.group.dev.dependencies]
langchain = "^0.0.248"
boto3 = {path = "dependencies/boto3-1.28.21-py3-none-any.whl"}
botocore = {path = "dependencies/botocore-1.31.21-py3-none-any.whl"}
chromadb = "^0.4.8"
tiktoken = "^0.4.0"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"