You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`SYSTEM_PROMPT`: Optional system prompt to prepend to all forwarded `/api/chat` requests
208
+
- Can be set via the `SYSTEM_PROMPT` environment variable or `--system-prompt` CLI flag
209
+
- If provided, the bridge will prepend a system message (role: `system`) to the beginning of the `messages` array for `/api/chat` requests unless the request already starts with a system message.
210
+
- Example: `SYSTEM_PROMPT="You are a concise assistant." ollama-mcp-bridge`
system_prompt: Optional[str] =typer.Option(os.getenv("SYSTEM_PROMPT", None), "--system-prompt", help="System prompt to prepend to messages (can also be set with SYSTEM_PROMPT env var)"),
0 commit comments