Complete documentation update for OpenAI SDK base URL new behavior#6093
Closed
jewoodev wants to merge 1 commit into
Closed
Complete documentation update for OpenAI SDK base URL new behavior#6093jewoodev wants to merge 1 commit into
jewoodev wants to merge 1 commit into
Conversation
Follow-up to spring-projects#6036, completing the documentation corrections started in 192eb5c. Signed-off-by: jewoodev <jewoos15@naver.com>
Member
|
@jewoodev Thanks for the PR and detailed description! |
ilayaperumalg
approved these changes
May 21, 2026
Member
|
Rebased and merged via d7f3c6c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This documentation-only PR follows up on #6036 and completes the OpenAI SDK base URL documentation corrections started in 192eb5c. Across 8 documentation files, it corrects the remaining OpenAI-compatible base URLs and removes documentation for properties dropped by the migration.
api/chat/dmr-chat.adocspring.ai.openai.base-urlconnection property pointed tohttps://hub.docker.com/u/ai, which is a Docker Hub page rather than an OpenAI-compatible API endpoint.http://localhost:12434/engines/v1, matching the Docker Model Runner endpoint used elsewhere on the page.api/embeddings/openai-embeddings.adoc,api/audio/speech/openai-speech.adoc,api/audio/transcriptions/openai-transcriptions.adoc,api/moderation/openai-moderation.adocembeddings-path,speech-path,transcription-path, andmoderation-pathproperties were removed by the openai-java SDK migration in 75fa844, alongsidecompletions-path.api/chat/dmr-chat.adochttp://localhost:12434/engineswithout/v1in 5 OpenAI-compatible occurrences.http://localhost:12434/engines/v1, aligning this page with the note added toopenai-chat.adocin 192eb5c.api/chat/ollama-chat.adochttp://localhost:11434without/v1in 2 occurrences.http://localhost:11434/v1; the nativespring.ai.ollama.*base URL is unchanged.api/chat/groq-chat.adochttps://api.groq.com/openaiwithout/v1in 8 occurrences.https://api.groq.com/openai/v1.api/chat/mistralai-chat.adochttps://api.mistral.aiwithout/v1.https://api.mistral.ai/v1; the nativespring.ai.mistralai.*base URL is unchanged.All changes are documentation-only, and the affected AsciiDoc structure was verified intact.
Follow-up to #6036.