File tree 3 files changed +4
-2
lines changed
00-use-cases/text-classification/src/test/java/com/thomasvitale/ai/spring
02-prompts/prompts-multimodality-openai/src/main/java/com/thomasvitale/ai/spring
09-audio-models/audio-models-transcription-openai/src/main/java/com/thomasvitale/ai/spring
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
package com .thomasvitale .ai .spring ;
2
2
3
+ import org .junit .jupiter .api .Disabled ;
3
4
import org .junit .jupiter .api .RepeatedTest ;
4
5
import org .springframework .beans .factory .annotation .Autowired ;
5
6
import org .springframework .boot .test .context .SpringBootTest ;
10
11
11
12
import static org .assertj .core .api .Assertions .assertThat ;
12
13
14
+ @ Disabled
13
15
@ SpringBootTest
14
16
@ Import (TestcontainersConfiguration .class )
15
17
public class TextClassifierTests {
Original file line number Diff line number Diff line change 1
1
package com .thomasvitale .ai .spring ;
2
2
3
3
import org .springframework .ai .chat .client .ChatClient ;
4
- import org .springframework .ai .chat . messages .Media ;
4
+ import org .springframework .ai .model .Media ;
5
5
import org .springframework .beans .factory .annotation .Value ;
6
6
import org .springframework .core .io .Resource ;
7
7
import org .springframework .stereotype .Service ;
Original file line number Diff line number Diff line change 1
1
package com .thomasvitale .ai .spring ;
2
2
3
+ import org .springframework .ai .audio .transcription .AudioTranscriptionPrompt ;
3
4
import org .springframework .ai .openai .OpenAiAudioTranscriptionModel ;
4
5
import org .springframework .ai .openai .OpenAiAudioTranscriptionOptions ;
5
6
import org .springframework .ai .openai .api .OpenAiAudioApi ;
6
- import org .springframework .ai .openai .audio .transcription .AudioTranscriptionPrompt ;
7
7
import org .springframework .beans .factory .annotation .Value ;
8
8
import org .springframework .core .io .Resource ;
9
9
import org .springframework .web .bind .annotation .GetMapping ;
You can’t perform that action at this time.
0 commit comments