Skip to content

Commit f0e3c33

Browse files
committed
Merge remote-tracking branch 'origin/v5' into v5-5826
* origin/v5: fix(utils/detect-mimetype): add support for detecting id3 tags (#5737) (#5822) fix (openai): structured output support for responses api model (#5809) (#5821) fix(provider/openai): update temperature handling for all search preview model (#5739) (#5820) feat(providers/fal): add transcribe (#5718) (#5819) docs: move gladia provider (#5790) (#5818) chore (automation): assign team pull requests to author (#5844) feat(providers/gladia): add transcribe (#5720) (#5817) feat (providers/openai): add gpt-4.1 models (#5764) (#5816) feat(providers/deepgram): add transcribe (#5721) (#5815) chore: switch to workspace:* (#5864) feat(providers/lmnt): add speech (#5726) (#5823) feat(providers/hume): add speech (#5727) (#5814) feat(providers/revai): add transcribe (#5730) (#5807)
2 parents e6bed7c + 3e10408 commit f0e3c33

File tree

192 files changed

+7819
-643
lines changed

Some content is hidden

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

192 files changed

+7819
-643
lines changed

.changeset/dull-points-mate.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@ai-sdk/fal': patch
3+
'ai': patch
4+
---
5+
6+
feat(providers/fal): add transcribe

.changeset/fair-cups-travel.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/revai': patch
3+
---
4+
5+
feat(providers/revai): add transcribe
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/deepgram': patch
3+
---
4+
5+
feat(providers/deepgram): add transcribe

.changeset/fuzzy-shoes-act.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/openai': patch
3+
---
4+
5+
feat (providers/openai): add gpt-4.1 models

.changeset/gentle-toys-smile.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'ai': patch
3+
---
4+
5+
fix(utils/detect-mimetype): add support for detecting id3 tags

.changeset/modern-kings-smoke.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/lmnt': patch
3+
---
4+
5+
feat(providers/lmnt): add speech

.changeset/quiet-glasses-double.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/gladia': patch
3+
---
4+
5+
feat(providers/gladia): add transcribe
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/hume': patch
3+
---
4+
5+
feat(providers/hume): add speech

.changeset/three-jars-fix.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/openai': patch
3+
---
4+
5+
fix (openai): structure output for responses model
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Assign Team Pull Requests to Author
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
permissions:
8+
pull-requests: write
9+
10+
jobs:
11+
assign:
12+
runs-on: ubuntu-latest
13+
steps:
14+
# Only assign pull requests by team members, ignore pull requests from forks
15+
- if: github.event.pull_request.head.repo.full_name == github.repository
16+
name: Assign pull request to author
17+
run: gh pr edit $PULL_REQUEST_URL --add-assignee $AUTHOR_LOGIN
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
PULL_REQUEST_URL: ${{ github.event.pull_request.html_url }}
21+
AUTHOR_LOGIN: ${{ github.event.pull_request.user.login }}

0 commit comments

Comments
 (0)