From bb97ec917f91c40021bcb36408de9f6e90f25c76 Mon Sep 17 00:00:00 2001 From: Ali Waleed <134522290+alizenhom@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:29:27 +0300 Subject: [PATCH] add missing dependecies tiktoken & pydantic --- .../opentelemetry-instrumentation-openai/README.rst | 2 +- .../opentelemetry-instrumentation-openai/pyproject.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/instrumentation/opentelemetry-instrumentation-openai/README.rst b/instrumentation/opentelemetry-instrumentation-openai/README.rst index 7cabed5b16..02e5922127 100644 --- a/instrumentation/opentelemetry-instrumentation-openai/README.rst +++ b/instrumentation/opentelemetry-instrumentation-openai/README.rst @@ -1,5 +1,5 @@ OpenTelemetry OpenAI Instrumentation -=================================== +==================================== |pypi| diff --git a/instrumentation/opentelemetry-instrumentation-openai/pyproject.toml b/instrumentation/opentelemetry-instrumentation-openai/pyproject.toml index dd508f9414..4aeff65c23 100644 --- a/instrumentation/opentelemetry-instrumentation-openai/pyproject.toml +++ b/instrumentation/opentelemetry-instrumentation-openai/pyproject.toml @@ -27,6 +27,9 @@ classifiers = [ dependencies = [ "opentelemetry-api ~= 1.12", "opentelemetry-instrumentation == 0.47b0", + "tiktoken>=0.1.1", + "pydantic>=1.8" + ] [project.optional-dependencies]