Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Elastic OpenTelemetry Instrumentation OpenAI

## v0.5.0

- Sync embeddings calls tracing with semantic conventions 1.29.0 (#36)
- Drop span events support for events, ELASTIC_OTEL_GENAI_EVENTS environment variable is gone (#38)
- Relax opentelemetry-api dependency so it supports 1.29.0+ (#40)

## v0.4.0

- Add support for tracing embeddings calls (#20)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
# 1.28.2 is required for Events API/SDK
"opentelemetry-api ~= 1.28.2",
# 1.28.2 is required for *robust* Events API/SDK
"opentelemetry-api ~= 1.28",
"opentelemetry-instrumentation ~= 0.49b2",
"opentelemetry-semantic-conventions ~= 0.49b2",
"wrapt >= 1.0.0, < 2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.4.0"
__version__ = "0.5.0"
Loading