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
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/sdk/server-ai": "0.20.1",
"packages/ai-providers/server-ai-langchain": "0.7.1",
"packages/ai-providers/server-ai-openai": "0.6.1",
"packages/sdk/server-ai": "1.0.0",
"packages/ai-providers/server-ai-langchain": "0.8.0",
"packages/ai-providers/server-ai-openai": "0.7.0",
"packages/optimization": "0.1.0"
}
11 changes: 11 additions & 0 deletions packages/ai-providers/server-ai-langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to the LaunchDarkly Python AI LangChain provider package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [0.8.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-langchain-0.7.1...launchdarkly-server-sdk-ai-langchain-0.8.0) (2026-05-19)


### ⚠ BREAKING CHANGES

* Remove async from create_model/agent/agent_graph methods ([#187](https://github.com/launchdarkly/python-server-sdk-ai/issues/187))

### Features

* Remove async from create_model/agent/agent_graph methods ([#187](https://github.com/launchdarkly/python-server-sdk-ai/issues/187)) ([dddc00a](https://github.com/launchdarkly/python-server-sdk-ai/commit/dddc00ab3d8b57cd58b71b57296680b8e95560fd))

## [0.7.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-langchain-0.7.0...launchdarkly-server-sdk-ai-langchain-0.7.1) (2026-05-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/ai-providers/server-ai-langchain/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "launchdarkly-server-sdk-ai-langchain"
version = "0.7.1"
version = "0.8.0"
description = "LaunchDarkly AI SDK LangChain Provider"
authors = [{name = "LaunchDarkly", email = "dev@launchdarkly.com"}]
license = {text = "Apache-2.0"}
Expand All @@ -20,7 +20,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"launchdarkly-server-sdk-ai>=0.20.1", # x-release-please-version
"launchdarkly-server-sdk-ai>=1.0.0", # x-release-please-version
"langchain-core>=1.0.0",
"langchain>=1.0.0",
]
Expand Down
11 changes: 11 additions & 0 deletions packages/ai-providers/server-ai-openai/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to the LaunchDarkly Python AI OpenAI provider package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [0.7.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-openai-0.6.1...launchdarkly-server-sdk-ai-openai-0.7.0) (2026-05-19)


### ⚠ BREAKING CHANGES

* Remove async from create_model/agent/agent_graph methods ([#187](https://github.com/launchdarkly/python-server-sdk-ai/issues/187))

### Features

* Remove async from create_model/agent/agent_graph methods ([#187](https://github.com/launchdarkly/python-server-sdk-ai/issues/187)) ([dddc00a](https://github.com/launchdarkly/python-server-sdk-ai/commit/dddc00ab3d8b57cd58b71b57296680b8e95560fd))

## [0.6.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-openai-0.6.0...launchdarkly-server-sdk-ai-openai-0.6.1) (2026-05-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/ai-providers/server-ai-openai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "launchdarkly-server-sdk-ai-openai"
version = "0.6.1"
version = "0.7.0"
description = "LaunchDarkly AI SDK OpenAI Provider"
authors = [{name = "LaunchDarkly", email = "dev@launchdarkly.com"}]
license = {text = "Apache-2.0"}
Expand All @@ -20,7 +20,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"launchdarkly-server-sdk-ai>=0.20.1", # x-release-please-version
"launchdarkly-server-sdk-ai>=1.0.0", # x-release-please-version
"openai>=1.0.0",
]

Expand Down
13 changes: 13 additions & 0 deletions packages/sdk/server-ai/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to the LaunchDarkly Python AI package will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [1.0.0](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-0.20.1...launchdarkly-server-sdk-ai-1.0.0) (2026-05-19)


### ⚠ BREAKING CHANGES

* Remove bedrock-specific tracker method, use track_metrics_of method with custom extractor ([#191](https://github.com/launchdarkly/python-server-sdk-ai/issues/191))
* Remove async from create_model/agent/agent_graph methods ([#187](https://github.com/launchdarkly/python-server-sdk-ai/issues/187))

### Features

* Remove async from create_model/agent/agent_graph methods ([#187](https://github.com/launchdarkly/python-server-sdk-ai/issues/187)) ([dddc00a](https://github.com/launchdarkly/python-server-sdk-ai/commit/dddc00ab3d8b57cd58b71b57296680b8e95560fd))
* Remove bedrock-specific tracker method, use track_metrics_of method with custom extractor ([#191](https://github.com/launchdarkly/python-server-sdk-ai/issues/191)) ([33e4a65](https://github.com/launchdarkly/python-server-sdk-ai/commit/33e4a6556d245f9ce26eb88bafaf3fbf9842c4fe))

## [0.20.1](https://github.com/launchdarkly/python-server-sdk-ai/compare/launchdarkly-server-sdk-ai-0.20.0...launchdarkly-server-sdk-ai-0.20.1) (2026-05-14)


Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/server-ai/PROVENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To verify build provenance attestations, we recommend using the [GitHub CLI `att
<!-- x-release-please-start-version -->
```
# Set the version of the library to verify
VERSION=0.20.1
VERSION=1.0.0
```
<!-- x-release-please-end -->

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/server-ai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "launchdarkly-server-sdk-ai"
version = "0.20.1" # x-release-please-version
version = "1.0.0" # x-release-please-version
description = "LaunchDarkly SDK for AI"
authors = [{name = "LaunchDarkly", email = "dev@launchdarkly.com"}]
license = {text = "Apache-2.0"}
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/server-ai/src/ldai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.20.1" # x-release-please-version
__version__ = "1.0.0" # x-release-please-version

from ldclient import log

Expand Down
Loading