micro--go-micro
110cb44d41
Add a dedicated Ollama AI provider (ai/ollama/) that auto-detects local vs cloud mode based on the base URL: - Local Ollama: native /api/chat endpoint with NDJSON streaming - Ollama Cloud: OpenAI-compatible /v1/chat/completions with SSE streaming Both modes support tool calls with a multi-round execution loop. Add agent.BaseURL option so agents can point at non-default LLM endpoints (e.g. local Ollama, proxies). Wire it through micro.AgentBaseURL at the top level. Include a complete example (examples/agent-ollama/) demonstrating a knowledge-base service with auto-discovered tools, a custom time tool, streaming, and env-var configuration for local vs cloud. Closes #3632