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
10 changes: 10 additions & 0 deletions python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect
- Handling for incomplete spans during termination

## [0.1.4] - 2025-05-08
### Feature
- Bug fixes
- Support for new evals in Prototype

## [0.1.3] - 2025-04-14
### Feature
- Validations for Prototype eval mapping
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/anthropic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/anthropic/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-anthropic"
version = "0.1.4"
version = "0.1.5"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Verify the version bump and corresponding changelog entry
The version has been updated to 0.1.5. Ensure python/frameworks/anthropic/CHANGELOG.md has a ## [0.1.5] entry for the protect feature. Also, note the Python constraint (>=3.9, <3.13) differs from other frameworks (<4.0)—please confirm this is intentional or document the rationale.


🏁 Script executed:

#!/bin/bash
# Confirm there is a changelog section for version 0.1.5
rg -n '^\s*##\s*\[0\.1\.5\]' python/frameworks/anthropic/CHANGELOG.md

Length of output: 97


🏁 Script executed:

#!/bin/bash
echo "Anthropic constraint:"
rg -n '^requires-python' python/frameworks/anthropic/pyproject.toml

echo -e "\nOther frameworks constraints:"
rg -n '^requires-python' python/frameworks/*/pyproject.toml | grep -v 'python/frameworks/anthropic/'

Length of output: 979


🏁 Script executed:

#!/bin/bash
echo "Anthropic requires-python constraint:"
rg -n 'requires-python' python/frameworks/anthropic/pyproject.toml

echo -e "\nOther frameworks requires-python constraints:"
rg -n 'requires-python' python/frameworks/*/pyproject.toml | grep -v 'python/frameworks/anthropic/'

Length of output: 1037


🏁 Script executed:

#!/bin/bash
echo "Displaying the first 50 lines of anthropic pyproject.toml to locate the Python version constraint:"
sed -n '1,50p' python/frameworks/anthropic/pyproject.toml

Length of output: 711


🏁 Script executed:

#!/bin/bash
echo "Anthropic python constraint:"
rg -n '^\s*python\s*=' python/frameworks/anthropic/pyproject.toml

echo -e "\nOther frameworks python constraints (excluding Anthropic):"
rg -n '^\s*python\s*=' python/frameworks/*/pyproject.toml | grep -v 'python/frameworks/anthropic/'

Length of output: 2168


Version bump and changelog confirmed

  • Detected ## [0.1.5] – 2025-05-23 in python/frameworks/anthropic/CHANGELOG.md.

Python compatibility range

  • pyproject.toml uses python = ">=3.9, <3.13".
  • Other frameworks mix upper bounds (<3.13, <3.14, <4.0>).

Please confirm that restricting Anthropic to <3.13 is intentional and update documentation (or add a comment in the repo) explaining the rationale.

🤖 Prompt for AI Agents
In python/frameworks/anthropic/pyproject.toml at line 3, confirm that the Python
version constraint ">=3.9, <3.13" is intentional given other frameworks allow up
to "<4.0". If this restriction is deliberate, update the project documentation
or add a comment in the repository explaining the rationale for this narrower
Python compatibility range to ensure clarity for future maintainers.

description = "OpenTelemetry instrumentation for Anthropic"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
9 changes: 9 additions & 0 deletions python/frameworks/autogen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.1.2] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.1] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.


## [0.1.0] - 2025-04-14
### Features
- Added support for Autogen Instrumentation
2 changes: 1 addition & 1 deletion python/frameworks/autogen/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-autogen"
version = "0.1.1"
version = "0.1.2"
description = "OpenTelemetry instrumentation for Autogen"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/bedrock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/bedrock/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-bedrock"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for Bedrock"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/crewai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/crewai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-crewai"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for Crewai"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/dspy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/dspy/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-DSPy"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for DSPy"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/groq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/groq/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-groq"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for Groq"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
9 changes: 9 additions & 0 deletions python/frameworks/guardrails/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.1.2] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.1] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.


## [0.1.0] - 2025-04-14
### Features
- Added support for Guardrails Instrumentation
2 changes: 1 addition & 1 deletion python/frameworks/guardrails/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-guardrails"
version = "0.1.1"
version = "0.1.2"
description = "OpenTelemetry instrumentation for Guardrails"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
9 changes: 9 additions & 0 deletions python/frameworks/haystack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.


## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/haystack/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-haystack"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for Haystack"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/instructor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/instructor/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-instructor"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for Instructor"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
7 changes: 7 additions & 0 deletions python/frameworks/langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.1.6] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.5] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.4] - 2025-05-02
### Changed
Expand Down
2 changes: 1 addition & 1 deletion python/frameworks/langchain/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-langchain"
version = "0.1.5"
version = "0.1.6"
description = "OpenTelemetry instrumentation for Langchain"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/frameworks/litellm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
2 changes: 1 addition & 1 deletion python/frameworks/litellm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-litellm"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for LiteLLM"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
9 changes: 9 additions & 0 deletions python/frameworks/llama_index/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.1.5] - 2025-05-23
### Feature
- Added support for FutureAGI's protect
- Bug fixes

## [0.1.4] - 2025-05-08
### Feature
- Updated dependencies to the latest versions.

## [0.1.3] - 2025-04-14
### Changed
- Updated dependencies to the latest versions.
Expand Down
2 changes: 1 addition & 1 deletion python/frameworks/llama_index/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "traceAI-llamaindex"
version = "0.1.4"
version = "0.1.5"
description = "OpenTelemetry instrumentation for Llama Index"
authors = ["Future AGI <no-reply@futureagi.com>"]
readme = "README.md"
Expand Down
Loading