Skip to content

Commit c6ca71a

Browse files
committed
lower case enums
1 parent 7ae018f commit c6ca71a

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

lib/src/types/attribute_typings.dart

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,33 +46,33 @@ class AgentAttributes {
4646
@JsonEnum()
4747
enum AgentInput {
4848
@JsonValue('audio')
49-
AUDIO,
49+
audio,
5050
@JsonValue('text')
51-
TEXT,
51+
text,
5252
@JsonValue('video')
53-
VIDEO,
53+
video,
5454
}
5555

5656
@JsonEnum()
5757
enum AgentOutput {
5858
@JsonValue('audio')
59-
AUDIO,
59+
audio,
6060
@JsonValue('transcription')
61-
TRANSCRIPTION,
61+
transcription,
6262
}
6363

6464
@JsonEnum()
6565
enum AgentState {
6666
@JsonValue('idle')
67-
IDLE,
67+
idle,
6868
@JsonValue('initializing')
69-
INITIALIZING,
69+
initializing,
7070
@JsonValue('listening')
71-
LISTENING,
71+
listening,
7272
@JsonValue('speaking')
73-
SPEAKING,
73+
speaking,
7474
@JsonValue('thinking')
75-
THINKING,
75+
thinking,
7676
}
7777

7878
///Schema for transcription-related attributes

lib/src/types/attribute_typings.g.dart

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)