Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/openclaw.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ CONTEXTPILOT_BACKEND_URL=https://api.openai.com docker compose up -d
```bash
pip install contextpilot
python -m contextpilot.server.http_server \
--stateless --port 8765 \
--port 8765 \
--infer-api-url https://api.anthropic.com
Comment on lines 63 to 66
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This edit drops the --stateless flag from the manual http_server invocation. That’s a behavioral change (switches from stateless to stateful mode by default) and doesn’t match a “formatting fix”; it can also change how /health and /reorder behave for users following this guide. If the intent was only formatting, keep --stateless and just rewrap the args; if the intent is to recommend stateful mode here, the surrounding guide text should explain why stateful mode is preferred for OpenClaw.

Copilot uses AI. Check for mistakes.
```

Expand Down
Loading