Skip to content

🌿 Fern Regeneration -- April 4, 2025 #261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .mock/definition/empathic-voice/chat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ channel:
For more details, refer to the [Authentication Strategies
Guide](/docs/introduction/api-key#authentication-strategies).
messages:
publish:
origin: client
body: PublishEvent
subscribe:
origin: server
body: SubscribeEvent
publish:
origin: client
body: PublishEvent
examples:
- messages:
- type: publish
Expand All @@ -131,19 +131,6 @@ channel:
imports:
root: __package__.yml
types:
PublishEvent:
discriminated: false
union:
- type: root.AudioInput
- type: root.SessionSettings
- type: root.UserInput
- type: root.AssistantInput
- type: root.ToolResponseMessage
- type: root.ToolErrorMessage
- type: root.PauseAssistantMessage
- type: root.ResumeAssistantMessage
source:
openapi: evi-asyncapi.json
SubscribeEvent:
discriminated: false
union:
Expand All @@ -159,3 +146,16 @@ types:
- type: root.ToolErrorMessage
source:
openapi: evi-asyncapi.json
PublishEvent:
discriminated: false
union:
- type: root.AudioInput
- type: root.SessionSettings
- type: root.UserInput
- type: root.AssistantInput
- type: root.ToolResponseMessage
- type: root.ToolErrorMessage
- type: root.PauseAssistantMessage
- type: root.ResumeAssistantMessage
source:
openapi: evi-asyncapi.json
7 changes: 7 additions & 0 deletions .mock/definition/empathic-voice/configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ service:
For more details on configuration options and how to configure EVI, see
our [configuration
guide](/docs/empathic-voice-interface-evi/configuration).
pagination:
offset: $request.page_number
results: $response.configs_page
source:
openapi: evi-openapi.json
display-name: List configs
Expand Down Expand Up @@ -315,6 +318,9 @@ service:
For more details on configuration options and how to configure EVI, see
our [configuration
guide](/docs/empathic-voice-interface-evi/configuration).
pagination:
offset: $request.page_number
results: $response.configs_page
source:
openapi: evi-openapi.json
path-parameters:
Expand Down Expand Up @@ -658,6 +664,7 @@ service:
response:
docs: Success
type: text
status-code: 200
errors:
- root.BadRequestError
examples:
Expand Down
3 changes: 3 additions & 0 deletions .mock/definition/empathic-voice/customVoices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ service:
Refer to our [voices
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
details on creating a custom voice.
pagination:
offset: $request.page_number
results: $response.custom_voices_page
source:
openapi: evi-openapi.json
display-name: List custom voices
Expand Down
1 change: 1 addition & 0 deletions .mock/definition/empathic-voice/prompts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ service:
response:
docs: Success
type: text
status-code: 200
errors:
- root.BadRequestError
examples:
Expand Down
2 changes: 2 additions & 0 deletions .mock/definition/empathic-voice/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,8 @@ service:
content-type: application/json
response:
docs: Success
type: text
status-code: 200
errors:
- root.BadRequestError
examples:
Expand Down
137 changes: 61 additions & 76 deletions .mock/definition/expression-measurement/batch/__package__.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1295,176 +1295,169 @@ types:
source:
openapi: batch-openapi.json
Source:
discriminated: false
discriminant: type
base-properties: {}
union:
- SourceUrl
- SourceFile
- SourceTextSource
url: SourceUrl
file: SourceFile
text: SourceTextSource
source:
openapi: batch-openapi.json
SourceFile:
properties:
type: literal<"file">
properties: {}
extends:
- File
source:
openapi: batch-openapi.json
SourceTextSource:
properties:
type: literal<"text">
properties: {}
source:
openapi: batch-openapi.json
SourceUrl:
properties:
type: literal<"url">
properties: {}
extends:
- Url
source:
openapi: batch-openapi.json
Url:
properties:
url:
type: string
docs: The URL of the source media file.
source:
openapi: batch-openapi.json
StateEmbeddingGeneration:
discriminated: false
discriminant: status
base-properties: {}
union:
- StateEmbeddingGenerationQueued
- StateEmbeddingGenerationInProgress
- StateEmbeddingGenerationCompletedEmbeddingGeneration
- StateEmbeddingGenerationFailed
QUEUED: StateEmbeddingGenerationQueued
IN_PROGRESS: StateEmbeddingGenerationInProgress
COMPLETED: StateEmbeddingGenerationCompletedEmbeddingGeneration
FAILED: StateEmbeddingGenerationFailed
source:
openapi: batch-openapi.json
StateEmbeddingGenerationCompletedEmbeddingGeneration:
properties:
status: literal<"COMPLETED">
properties: {}
extends:
- CompletedEmbeddingGeneration
source:
openapi: batch-openapi.json
StateEmbeddingGenerationFailed:
properties:
status: literal<"FAILED">
properties: {}
extends:
- Failed
source:
openapi: batch-openapi.json
StateEmbeddingGenerationInProgress:
properties:
status: literal<"IN_PROGRESS">
properties: {}
extends:
- InProgress
source:
openapi: batch-openapi.json
StateEmbeddingGenerationQueued:
properties:
status: literal<"QUEUED">
properties: {}
extends:
- Queued
source:
openapi: batch-openapi.json
StateInference:
discriminated: false
discriminant: status
base-properties: {}
union:
- QueuedState
- InProgressState
- CompletedState
- FailedState
QUEUED: QueuedState
IN_PROGRESS: InProgressState
COMPLETED: CompletedState
FAILED: FailedState
source:
openapi: batch-openapi.json
CompletedState:
properties:
status: literal<"COMPLETED">
properties: {}
extends:
- CompletedInference
source:
openapi: batch-openapi.json
FailedState:
properties:
status: literal<"FAILED">
properties: {}
extends:
- Failed
source:
openapi: batch-openapi.json
InProgressState:
properties:
status: literal<"IN_PROGRESS">
properties: {}
extends:
- InProgress
source:
openapi: batch-openapi.json
QueuedState:
properties:
status: literal<"QUEUED">
properties: {}
extends:
- Queued
source:
openapi: batch-openapi.json
StateTlInference:
discriminated: false
discriminant: status
base-properties: {}
union:
- StateTlInferenceQueued
- StateTlInferenceInProgress
- StateTlInferenceCompletedTlInference
- StateTlInferenceFailed
QUEUED: StateTlInferenceQueued
IN_PROGRESS: StateTlInferenceInProgress
COMPLETED: StateTlInferenceCompletedTlInference
FAILED: StateTlInferenceFailed
source:
openapi: batch-openapi.json
StateTlInferenceCompletedTlInference:
properties:
status: literal<"COMPLETED">
properties: {}
extends:
- CompletedTlInference
source:
openapi: batch-openapi.json
StateTlInferenceFailed:
properties:
status: literal<"FAILED">
properties: {}
extends:
- Failed
source:
openapi: batch-openapi.json
StateTlInferenceInProgress:
properties:
status: literal<"IN_PROGRESS">
properties: {}
extends:
- InProgress
source:
openapi: batch-openapi.json
StateTlInferenceQueued:
properties:
status: literal<"QUEUED">
properties: {}
extends:
- Queued
source:
openapi: batch-openapi.json
StateTraining:
discriminated: false
discriminant: status
base-properties: {}
union:
- StateTrainingQueued
- StateTrainingInProgress
- StateTrainingCompletedTraining
- StateTrainingFailed
QUEUED: StateTrainingQueued
IN_PROGRESS: StateTrainingInProgress
COMPLETED: StateTrainingCompletedTraining
FAILED: StateTrainingFailed
source:
openapi: batch-openapi.json
StateTrainingCompletedTraining:
properties:
status: literal<"COMPLETED">
properties: {}
extends:
- CompletedTraining
source:
openapi: batch-openapi.json
StateTrainingFailed:
properties:
status: literal<"FAILED">
properties: {}
extends:
- Failed
source:
openapi: batch-openapi.json
StateTrainingInProgress:
properties:
status: literal<"IN_PROGRESS">
properties: {}
extends:
- InProgress
source:
openapi: batch-openapi.json
StateTrainingQueued:
properties:
status: literal<"QUEUED">
properties: {}
extends:
- Queued
source:
Expand Down Expand Up @@ -1516,20 +1509,19 @@ types:
source:
openapi: batch-openapi.json
Task:
discriminated: false
discriminant: type
base-properties: {}
union:
- TaskClassification
- TaskRegression
classification: TaskClassification
regression: TaskRegression
source:
openapi: batch-openapi.json
TaskClassification:
properties:
type: literal<"classification">
properties: {}
source:
openapi: batch-openapi.json
TaskRegression:
properties:
type: literal<"regression">
properties: {}
source:
openapi: batch-openapi.json
TextSource: map<string, unknown>
Expand Down Expand Up @@ -1774,13 +1766,6 @@ types:
source:
openapi: batch-openapi.json
UnionPredictResult: InferenceSourcePredictResult
Url:
properties:
url:
type: string
docs: The URL of the source media file.
source:
openapi: batch-openapi.json
ValidationArgs:
properties:
positive_label: optional<Target>
Expand Down
Loading
Loading