Skip to content

Commit 713f8e0

Browse files
authored
Merge branch 'main' into feat/mcp-tool-filtering-js
2 parents 4bfc20b + a153963 commit 713f8e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+935
-732
lines changed

.changeset/four-trams-sin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@openai/agents-core': patch
3+
---
4+
5+
Fix #131 Human in the Loop MCP approval fails

.changeset/funny-memes-cover.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@openai/agents-realtime': patch
3+
---
4+
5+
Correct typo in RealtimeTransportEventTypes in code and docs

.changeset/odd-rice-call.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@openai/agents-extensions': patch
3+
'@openai/agents-realtime': patch
4+
'@openai/agents-openai': patch
5+
'@openai/agents-core': patch
6+
---
7+
8+
Tentative fix for #187 : Lock zod version to <=3.25.67

.changeset/rude-ravens-doubt.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@openai/agents-extensions": patch
3+
---
4+
5+
Add tracing usage telemetry to aiSdk

.changeset/salty-actors-grin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@openai/agents-realtime': patch
3+
---
4+
5+
Fixes issue #106 where overlapping user inputs caused null transcripts in history

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install pnpm
2323
uses: pnpm/action-setup@v4
2424
with:
25-
version: 10.12.1
25+
version: 10.13.1
2626
run_install: true
2727
- name: Build all packages
2828
run: pnpm build

docs/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/src/content/docs/guides/quickstart.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ const historyFunFact = tool({
8585
name: 'history_fun_fact',
8686
// The description is used to describe **when** to use the tool by telling it **what** it does.
8787
description: 'Give a fun fact about a historical event',
88+
// This tool takes no parameters, so we provide an empty Zod Object.
89+
parameters: z.object({}),
8890
execute: async () => {
8991
// The output will be returned back to the Agent to use
9092
return 'Sharks are older than trees.';

docs/src/content/docs/guides/release.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: Release process
33
description: Learn how we version and release the SDK and recent changes.
44
---
55

6-
import { Content as AgentsSdkChangelog } from '../../../../../packages/agents/CHANGELOG.md';
7-
86
## Versioning
97

108
The project follows a slightly modified version of semantic versioning using the form `0.Y.Z`. The leading `0` indicates the SDK is still evolving rapidly. Increment the components as follows:

docs/src/content/docs/guides/voice-agents/transport.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Use any recording/playback library to handle the raw PCM16 audio bytes.
4949
### Building your own transport mechanism
5050

5151
If you want to use a different speech-to-speech API or have your own custom transport mechanism, you
52-
can create your own by implementing the `RealtimeTransportLayer` interface and emit the `RealtimeTranportEventTypes` events.
52+
can create your own by implementing the `RealtimeTransportLayer` interface and emit the `RealtimeTransportEventTypes` events.
5353

5454
## Interacting with the Realtime API more directly
5555

0 commit comments

Comments
 (0)