This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a change to branch
investigate-and-fix-camel-23963-camel-openai-conf
in repository https://gitbox.apache.org/repos/asf/camel.git
omit bcef8114a2c0 CAMEL-23963: regenerate catalog and EndpointDSL sources
omit 9e08e4b11099 CAMEL-23963: configurable strategies for tool errors and
hallucinated tool names
add 4c952dc5d4e2 CAMEL-24267: Synchronize writer-side setters in
ThrottlingInflightRoutePolicy
add 8954f2de10a2 CAMEL-24289: camel-aws2-textract - throw when
pojoRequest=true and the body is the wrong type (#25210)
add c16407edf6aa CAMEL-24300: camel-aws2-ec2 - throw when pojoRequest=true
and the body is the wrong type (#25215)
add 68c4eaf5fcc9 chore(deps): Bump quarkus-version from 3.37.4 to 3.38.0
add 4612bf35141e chore(deps): Bump com.azure:azure-storage-blob-changefeed
add d2b5784e50e7 docs(datasonnet): update DataSonnet documentation URL
add 4d1c892e0f00 chore(deps): Bump aws-java-sdk2-version from 2.49.4 to
2.49.5
add cde36a6cba60 CAMEL-24285: camel-aws2-polly - throw when
pojoRequest=true and the body is the wrong type (#25199)
add 05c02ff708d3 chore(deps): Bump com.couchbase.client:java-client from
3.12.1 to 3.12.2
add 3cd711f33f55 chore(deps): Bump com.alibaba:fastjson from 2.0.62 to
2.0.63
add 5e2c030dee30 chore(deps): Bump org.snmp4j:snmp4j from 3.12.2 to 3.13.0
add 0759a9243b99 chore(deps): Bump org.graalvm.js:js-language from 25.1.3
to 25.2.4
add c5a7b42a5f11 chore(deps-dev): Bump com.github.mwiede:jsch from 2.28.5
to 2.28.6
add 169989c85cd0 CAMEL-23964: camel-openai - Add per-server MCP tool
filtering via toolNames
add f4b4af6bab3e CAMEL-23963: configurable strategies for tool errors and
hallucinated tool names
add 0cd8f162a76f CAMEL-23963: regenerate catalog and EndpointDSL sources
add ee48fc1650ca CAMEL-23963: change toolExecutionErrorStrategy default to
failExchange
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (bcef8114a2c0)
\
N -- N -- N
refs/heads/investigate-and-fix-camel-23963-camel-openai-conf (ee48fc1650ca)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../camel/catalog/docs/datasonnet-language.adoc | 2 +-
.../org/apache/camel/catalog/docs/openai-mcp.adoc | 58 ++++
.../org/apache/camel/component/openai/openai.json | 4 +-
.../camel-openai/src/main/docs/openai-mcp.adoc | 68 ++++-
.../component/openai/OpenAIConfiguration.java | 17 +-
.../camel/component/openai/OpenAIEndpoint.java | 43 ++-
.../openai/ToolExecutionErrorStrategy.java | 15 +-
...penAIAgenticLoopMalformedToolArgumentsTest.java | 6 +-
.../openai/OpenAIEndpointMcpToolFilteringTest.java | 332 +++++++++++++++++++++
.../openai/OpenAIProducerMcpMockTest.java | 15 +-
.../openai/OpenAIToolErrorStrategyTest.java | 66 +++-
components/camel-aws/camel-aws2-ec2/pom.xml | 5 +
.../camel/component/aws2/ec2/AWS2EC2Producer.java | 27 ++
.../camel/component/aws2/ec2/EC2ProducerTest.java | 37 +++
components/camel-aws/camel-aws2-polly/pom.xml | 5 +
.../camel/component/aws2/polly/Polly2Producer.java | 27 ++
.../component/aws2/polly/Polly2ProducerTest.java | 37 +++
components/camel-aws/camel-aws2-textract/pom.xml | 5 +
.../component/aws2/textract/Textract2Producer.java | 27 ++
.../aws2/textract/Textract2ProducerTest.java | 37 +++
.../src/main/docs/datasonnet-language.adoc | 2 +-
.../throttling/ThrottlingInflightRoutePolicy.java | 4 +-
.../ThrottlingInflightRoutePolicySetterTest.java | 170 +++++++++++
parent/pom.xml | 16 +-
24 files changed, 978 insertions(+), 47 deletions(-)
create mode 100644
components/camel-ai/camel-openai/src/test/java/org/apache/camel/component/openai/OpenAIEndpointMcpToolFilteringTest.java
create mode 100644
core/camel-support/src/test/java/org/apache/camel/throttling/ThrottlingInflightRoutePolicySetterTest.java