Skip to content

v1.2.0

Latest

Choose a tag to compare

@github-actions github-actions released this 13 Nov 17:40
· 15 commits to main since this release
1c4c8c9

🚀 Features

Adding config option to specify metadata/header values for telemetry exporters - @alocay PR #460

Adding a metadata (for grpc protocol) and headers (for http/protobuf protocol) config option for the telemetry.exporters.metrics.otlp yaml config section.

telemetry:
  exporters:
    metrics:
      otlp:
        endpoint: "http://127.0.0.1:4317"
        protocol: "grpc"
        metadata:
          the-key: some-value
    tracing:
      otlp:
        endpoint: "http://127.0.0.1:4317"
        protocol: "http/protobuf"
        headers:
          some-key: another-value

🐛 Fixes

Allow using builtin names for custom tools - @dylan-apollo PR #481

Previously, the names of builtin tools were reserved even if the tool was disabled.
These names are now available for custom tools if the matching builtin tool is disabled via config:

  • introspect
  • search
  • explorer
  • execute
  • validate

Improved performance of parallel tool calls - @dylan-apollo PR #475

Responsiveness of all tools is improved when many clients are connected.