Skip to content

Commit 661e282

Browse files
committed
update doc and pom xml files
Signed-off-by: Alexandros Pappas <[email protected]>
1 parent 6446920 commit 661e282

File tree

3 files changed

+38
-14
lines changed
  • spring-ai-bom
  • spring-ai-docs/src/main/antora/modules/ROOT/pages/api/audio/speech
  • spring-ai-spring-boot-starters/spring-ai-starter-model-elevenlabs

3 files changed

+38
-14
lines changed

spring-ai-bom/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,11 @@
571571
<version>${project.version}</version>
572572
</dependency>
573573

574+
<dependency>
575+
<groupId>org.springframework.ai</groupId>
576+
<artifactId>spring-ai-autoconfigure-model-elevenlabs</artifactId>
577+
</dependency>
578+
574579
<dependency>
575580
<groupId>org.springframework.ai</groupId>
576581
<artifactId>spring-ai-autoconfigure-model-huggingface</artifactId>
@@ -920,6 +925,11 @@
920925
<version>${project.version}</version>
921926
</dependency>
922927

928+
<dependency>
929+
<groupId>org.springframework.ai</groupId>
930+
<artifactId>spring-ai-starter-model-elevenlabs</artifactId>
931+
</dependency>
932+
923933
<dependency>
924934
<groupId>org.springframework.ai</groupId>
925935
<artifactId>spring-ai-starter-model-minimax</artifactId>

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/audio/speech/elevenlabs-speech.adoc

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
1818
----
1919
<dependency>
2020
<groupId>org.springframework.ai</groupId>
21-
<artifactId>spring-ai-elevenlabs-spring-boot-starter</artifactId>
21+
<artifactId>spring-ai-starter-model-elevenlabs</artifactId>
2222
</dependency>
2323
----
2424

@@ -27,7 +27,7 @@ or to your Gradle `build.gradle` build file:
2727
[source,groovy]
2828
----
2929
dependencies {
30-
implementation 'org.springframework.ai:spring-ai-elevenlabs-spring-boot-starter'
30+
implementation 'org.springframework.ai:spring-ai-starter-model-elevenlabs'
3131
}
3232
----
3333

@@ -68,18 +68,26 @@ TIP: All properties prefixed with `spring.ai.elevenlabs.tts.options` can be over
6868
.Available Output Formats
6969
[cols="1,1"]
7070
|====
71-
| Enum Value | Description
72-
| MP3_22050_32 | MP3, 22.05 kHz, 32 kbps
73-
| MP3_44100_32 | MP3, 44.1 kHz, 32 kbps
74-
| MP3_44100_64 | MP3, 44.1 kHz, 64 kbps
75-
| MP3_44100_96 | MP3, 44.1 kHz, 96 kbps
76-
| MP3_44100_128 | MP3, 44.1 kHz, 128 kbps
77-
| MP3_44100_192 | MP3, 44.1 kHz, 192 kbps
78-
| PCM_16000 | PCM, 16 kHz
79-
| PCM_22050 | PCM, 22.05 kHz
80-
| PCM_24000 | PCM, 24 kHz
81-
| PCM_44100 | PCM, 44 kHz
82-
| ULAW_8000 | µ-law, 8 kHz
71+
| Enum Value | Description
72+
| MP3_22050_32 | MP3, 22.05 kHz, 32 kbps
73+
| MP3_44100_32 | MP3, 44.1 kHz, 32 kbps
74+
| MP3_44100_64 | MP3, 44.1 kHz, 64 kbps
75+
| MP3_44100_96 | MP3, 44.1 kHz, 96 kbps
76+
| MP3_44100_128 | MP3, 44.1 kHz, 128 kbps
77+
| MP3_44100_192 | MP3, 44.1 kHz, 192 kbps
78+
| PCM_8000 | PCM, 8 kHz
79+
| PCM_16000 | PCM, 16 kHz
80+
| PCM_22050 | PCM, 22.05 kHz
81+
| PCM_24000 | PCM, 24 kHz
82+
| PCM_44100 | PCM, 44.1 kHz
83+
| PCM_48000 | PCM, 48 kHz
84+
| ULAW_8000 | µ-law, 8 kHz
85+
| ALAW_8000 | A-law, 8 kHz
86+
| OPUS_48000_32 | Opus, 48 kHz, 32 kbps
87+
| OPUS_48000_64 | Opus, 48 kHz, 64 kbps
88+
| OPUS_48000_96 | Opus, 48 kHz, 96 kbps
89+
| OPUS_48000_128 | Opus, 48 kHz, 128 kbps
90+
| OPUS_48000_192 | Opus, 48 kHz, 192 kbps
8391
|====
8492

8593

spring-ai-spring-boot-starters/spring-ai-starter-model-elevenlabs/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
<artifactId>spring-boot-starter</artifactId>
2929
</dependency>
3030

31+
<dependency>
32+
<groupId>org.springframework.ai</groupId>
33+
<artifactId>spring-ai-autoconfigure-model-elevenlabs</artifactId>
34+
<version>${project.parent.version}</version>
35+
</dependency>
36+
3137
<dependency>
3238
<groupId>org.springframework.ai</groupId>
3339
<artifactId>spring-ai-elevenlabs</artifactId>

0 commit comments

Comments
 (0)