John Thompson
John Thompson
Explain Maven Standard Directory Layout - https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html
How to blog post for calling a MS SQL Server stored procedure from Spring Boot
How to blog post for calling an Postgres stored procedure from Spring Boot
How to blog post for calling an Oracle stored procedure from Spring Boot
When using AudioTranscription Options, they seem to be getting overwritten with the defaults. Setting options as: ``` OpenAiAudioTranscriptionOptions transcriptionOptions = OpenAiAudioTranscriptionOptions.builder() .withResponseFormat(OpenAiAudioApi.TranscriptResponseFormat.SRT) .withModel(OpenAiAudioApi.WhisperModel.WHISPER_1.name()) .withTemperature(0f) .build(); AudioTranscriptionPrompt prompt = new AudioTranscriptionPrompt(file.getResource(),...
Maven Properties not getting substituted as described. This docker file: ``` FROM openjdk:11-jre-slim as builder WORKDIR application ADD maven/${project.build.finalName}.jar ./${project.build.finalName}.jar RUN java -Djarmode=layertools -jar ${project.build.finalName}.jar extract FROM openjdk:11-jre-slim WORKDIR application...