Skip to content

Commit dbe81d3

Browse files
AssemblyAISwimburger
AssemblyAI
authored andcommitted
Project import generated by Copybara.
GitOrigin-RevId: 57ac1e3e1114b86585cc1f6d723a75062786a5e0
1 parent e25b9d9 commit dbe81d3

11 files changed

+168
-87
lines changed

.spectral.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ extends: ["spectral:oas", "spectral:asyncapi"]
22
overrides:
33
- files:
44
- "openapi.yml#/components/schemas/TranscriptParams/example"
5+
- "openapi.yml#/components/schemas/TranscriptList/example"
56
- "asyncapi.yml#/components/schemas/PartialTranscript/examples"
67
- "asyncapi.yml#/components/schemas/FinalTranscript/examples"
78
rules:

asyncapi.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
asyncapi: 2.6.0
22
defaultContentType: application/json
3-
id: http://assemblyai.com/real-time
3+
id: http://assemblyai.com/asyncapi
44

55
info:
6-
title: AssemblyAI real-time API
7-
description: AssemblyAI real-time API
6+
title: AssemblyAI Streaming Speech-to-Text API
7+
description: AssemblyAI Streaming Speech-to-Text API
88
license:
99
name: MIT License
10-
version: 1.1.1
10+
version: 1.1.2
1111
contact:
1212
name: API Support
1313
@@ -23,10 +23,10 @@ servers:
2323
- Token: []
2424

2525
tags:
26-
- name: realtime
27-
description: Real-time transcription
26+
- name: streaming
27+
description: Streaming Speech-to-Text
2828
externalDocs:
29-
url: https://www.assemblyai.com/docs/guides/real-time-streaming-transcription
29+
url: https://www.assemblyai.com/docs/speech-to-text/streaming
3030

3131
channels:
3232
/v2/realtime/ws:
@@ -57,7 +57,7 @@ channels:
5757
description: The encoding of the audio data
5858
$ref: "#/components/schemas/AudioEncoding"
5959
token:
60-
description: "Authenticate using a [generated temporary token](https://www.assemblyai.com/docs/guides/real-time-streaming-transcription#creating-temporary-authentication-tokens)"
60+
description: "Authenticate using a [generated temporary token](https://www.assemblyai.com/docs/speech-to-text/streaming#authenticate-with-a-temporary-token)"
6161
type: string
6262
format: password
6363
publish:
@@ -511,7 +511,7 @@ components:
511511
- terminate_session
512512
properties:
513513
terminate_session:
514-
description: Set to true to end your real-time session forever
514+
description: Set to true to end your streaming session forever
515515
type: boolean
516516
additionalProperties: false
517517
examples:
@@ -549,7 +549,7 @@ components:
549549
in: header
550550
name: Authorization
551551
Token:
552-
description: "Authenticate using a [generated temporary token](https://www.assemblyai.com/docs/guides/real-time-streaming-transcription#creating-temporary-authentication-tokens)"
552+
description: "Authenticate using a [generated temporary token](https://www.assemblyai.com/docs/speech-to-text/streaming#authenticate-with-a-temporary-token)"
553553
type: httpApiKey
554554
in: query
555555
name: token
-1 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.

fern/asyncapi-overrides.yml

-3
This file was deleted.

fern/docs.yml

+2-21
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,6 @@ instances:
33
title: AssemblyAI | Reference
44
navigation:
55
- api: API Reference
6-
layout:
7-
- files
8-
- transcripts:
9-
- submit
10-
- get
11-
- getSentences
12-
- getParagraphs
13-
- getSubtitles
14-
- getRedactedAudio
15-
- wordSearch
16-
- list
17-
- delete
18-
- lemur:
19-
- task
20-
- summary
21-
- questionAnswer
22-
- actionItems
23-
- purgeRequestData
24-
- realtime
256
colors:
267
accent-primary: "#df9844"
278
background: "#09060F"
@@ -41,10 +22,10 @@ background-image:
4122
navbar-links:
4223
- type: secondary
4324
text: Docs
44-
url: /docs
25+
url: https://www.assemblyai.com/docs/
4526
- type: primary
4627
text: Dashboard
47-
url: /app
28+
url: https://www.assemblyai.com/app
4829
css: ./assets/custom-styles.css
4930
typography:
5031
headingsFont:

fern/fern.config.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization": "assemblyai",
3-
"version": "0.19.23"
4-
}
3+
"version": "0.19.9"
4+
}

fern/generators.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
default-group: local
2-
api:
3-
- path: ../asyncapi.yml
4-
overrides: ./asyncapi-overrides.yml
5-
- path: ../openapi.yml
6-
overrides: ./openapi-overrides.yml
2+
async-api: ../asyncapi.yml
3+
openapi: ../openapi.yml
4+
openapi-overrides: ./openapi-overrides.yml
75
groups:
86
local:
97
generators:
@@ -15,7 +13,7 @@ groups:
1513
ruby-sdk:
1614
generators:
1715
- name: fernapi/fern-ruby-sdk
18-
version: 0.3.2
16+
version: 0.3.0
1917
github:
2018
repository: AssemblyAI/assemblyai-ruby-sdk
2119
mode: pull-request

fern/openapi-overrides.yml

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
x-fern-groups:
2-
transcript:
3-
summary: Transcript
4-
lemur:
5-
summary: LeMUR
6-
realtime:
7-
summary: Streaming
81
components:
92
schemas:
103
Transcript:

0 commit comments

Comments
 (0)