docs(agent): Add ollama instruction docs - #8002
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Agent documentation guide describing how to run a Flower AgentApp fully locally by connecting a local SuperLink to Ollama’s OpenAI-compatible Responses endpoint, avoiding the need for a Flower account or external model API keys.
Changes:
- Adds a new how-to guide: “Run an AgentApp with a local SuperLink and Ollama”.
- Documents required project setup (AgentApp,
pyproject.toml), Ollama setup, SuperLink configuration, and basic troubleshooting. - Adds the new guide to the Agent docs navigation immediately after the local SuperLink guide.
Critical issues
- None found.
Simplicity/readability suggestions
- None required.
Consistency concerns
- None found (the guide aligns with the existing local SuperLink guide patterns, including
FLWR_MODEL_API_ENDPOINTusing a full/v1/responsesURL).
Whether the PR should be split
- No.
Overall verdict
- Looks ready as a documentation-only addition with consistent setup and commands.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| agent/docs/source/index.md | Adds the new Ollama guide to the Agent docs toctree immediately after the local SuperLink guide. |
| agent/docs/source/how-to-guides/run-with-ollama.md | New end-to-end guide for running an AgentApp locally using SuperLink + Ollama’s /v1/responses endpoint, including troubleshooting. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
charlesbvll
approved these changes
Aug 25, 2026
danieljanes
approved these changes
Aug 25, 2026
6 tasks
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.
Summary
Add a new guide explaining how to run a Flower AgentApp locally with Ollama.
Why
Developers need a documented way to use Flower Agent without a Flower account or external model API key. Ollama provides a local OpenAI-compatible Responses endpoint that can be connected to a local SuperLink.
What
Run an AgentApp with Ollamaguide./v1/responsesendpoint.