Skip to content
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

🌿 Fern Regeneration -- September 17, 2024 #181

Closed
wants to merge 1 commit into from
Closed
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
131 changes: 112 additions & 19 deletions .mock/definition/empathic-voice/__package__.yml

Large diffs are not rendered by default.

54 changes: 36 additions & 18 deletions .mock/definition/empathic-voice/chat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,28 +119,46 @@ types:
SubscribeEvent:
discriminated: false
union:
- root.AssistantEnd
- root.AssistantMessage
- root.AudioOutput
- root.ChatMetadata
- root.WebSocketError
- root.UserInterruption
- root.UserMessage
- root.ToolCallMessage
- root.ToolResponseMessage
- root.ToolErrorMessage
- display-name: AssistantEnd
type: root.AssistantEnd
- display-name: AssistantMessage
type: root.AssistantMessage
- display-name: AudioOutput
type: root.AudioOutput
- display-name: ChatMetadata
type: root.ChatMetadata
- display-name: Error
type: root.WebSocketError
- display-name: UserInterruption
type: root.UserInterruption
- display-name: UserMessage
type: root.UserMessage
- display-name: ToolCallMessage
type: root.ToolCallMessage
- display-name: ToolResponseMessage
type: root.ToolResponseMessage
- display-name: ToolErrorMessage
type: root.ToolErrorMessage
source:
openapi: assistant-asyncapi.json
PublishEvent:
discriminated: false
union:
- root.AudioInput
- root.SessionSettings
- root.UserInput
- root.AssistantInput
- root.ToolResponseMessage
- root.ToolErrorMessage
- root.PauseAssistantMessage
- root.ResumeAssistantMessage
- display-name: AudioInput
type: root.AudioInput
- display-name: SessionSettings
type: root.SessionSettings
- display-name: UserInput
type: root.UserInput
- display-name: AssistantInput
type: root.AssistantInput
- display-name: ToolResponseMessage
type: root.ToolResponseMessage
- display-name: ToolErrorMessage
type: root.ToolErrorMessage
- display-name: PauseAssistantMessage
type: root.PauseAssistantMessage
- display-name: ResumeAssistantMessage
type: root.ResumeAssistantMessage
source:
openapi: assistant-asyncapi.json
144 changes: 68 additions & 76 deletions .mock/definition/expression-measurement/batch/__package__.yml
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,11 @@ types:
properties:
time: TimeInterval
emotions:
display-name: Emotions Scores
docs: A high-dimensional embedding in emotion space.
type: list<EmotionScore>
descriptions:
display-name: Descriptions Scores
docs: Modality-specific descriptive features and their scores.
type: list<DescriptionsScore>
source:
Expand Down Expand Up @@ -647,6 +649,7 @@ types:
docs: The predicted probability that a detected face was actually a face.
box: BoundingBox
emotions:
display-name: Emotions Scores
docs: A high-dimensional embedding in emotion space.
type: list<EmotionScore>
facs:
Expand All @@ -660,6 +663,7 @@ types:
FacemeshPrediction:
properties:
emotions:
display-name: Emotions Scores
docs: A high-dimensional embedding in emotion space.
type: list<EmotionScore>
source:
Expand Down Expand Up @@ -1020,6 +1024,7 @@ types:
Value between `0.0` and `1.0` that indicates our transcription model's
relative confidence that this text was spoken by this speaker.
emotions:
display-name: Emotions Scores
docs: A high-dimensional embedding in emotion space.
type: list<EmotionScore>
sentiment:
Expand Down Expand Up @@ -1117,6 +1122,7 @@ types:
Value between `0.0` and `1.0` that indicates our transcription model's
relative confidence that this text was spoken by this speaker.
emotions:
display-name: Emotions Scores
docs: A high-dimensional embedding in emotion space.
type: list<EmotionScore>
source:
Expand Down Expand Up @@ -1211,6 +1217,7 @@ types:
Value between `0.0` and `1.0` that indicates our transcription model's
relative confidence that this text was spoken by this speaker.
emotions:
display-name: Emotions Scores
docs: A high-dimensional embedding in emotion space.
type: list<EmotionScore>
source:
Expand Down Expand Up @@ -1251,176 +1258,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 @@ -1472,20 +1472,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 @@ -1730,13 +1729,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