spring-ai icon indicating copy to clipboard operation
spring-ai copied to clipboard

An Application Framework for AI Engineering

Results 659 spring-ai issues
Sort by recently updated
recently updated
newest added
trafficstars

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(),...

It seems to me that SpringAI currently focuses only on generative large models. Will there be a future feature similar to Amazon's Deep Java Library that allows developers to import...

The reason is that the OpenAiImageResponseMetadata class does not have standard getter methods.

**Expected Behavior** I would like to be able to use my Custom Model (e.g. fine-tuned foundation model) deployed on GCP Endpoint with Spring AI library. API for Endpoints: https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.endpoints Example...

VertexAI PaLM2 Chat https://docs.spring.io/spring-ai/reference/api/clients/vertexai-palm2-chat.html does not support authentication by gcloud (`gcloud auth application-default login`). I get following error when not defining `api-key`: ``` java.lang.RuntimeException: 403 - ResponseError[error=Error[message=Method doesn't allow unregistered...

Attempt to replace the https://github.com/spring-projects/spring-ai/pull/305

Now huggingface text-generation-inference only support Llama, Falcon, StarCoder, BLOOM, GPT-NeoX, and T5. If you select other LLMs, use HuggingfaceChatClient will get errors. Yesterday, I use gpt2 model, and I use...

This PR closes: https://github.com/spring-projects/spring-ai/issues/600 When Bedrock invokes model API, Bedrock will return input, output token count, and latency information from the `SDKHttpResponse` header. extract this information as `ChatResponseMetadata` to `ChatResponse`

model client

I am trying to use [VertexAIGeminiChat](https://docs.spring.io/spring-ai/reference/api/clients/vertexai-gemini-chat.html) module in my spring boot app, but when I use a service account json file in credentialsUri, I get this error: UNAUTHENTICATED: Request had...