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
@@ -1132,6 +1133,26 @@ This design also enables **multi-agent support** with flexible provider selectio
1132
1133
1133
1134
> Run `picoclaw auth login --provider anthropic` to paste your API token.
1134
1135
1136
+
**Anthropic Messages API (native format)**
1137
+
1138
+
For direct Anthropic API access or custom endpoints that only support Anthropic's native message format:
1139
+
1140
+
```json
1141
+
{
1142
+
"model_name": "claude-opus-4-6",
1143
+
"model": "anthropic-messages/claude-opus-4-6",
1144
+
"api_key": "sk-ant-your-key",
1145
+
"api_base": "https://api.anthropic.com"
1146
+
}
1147
+
```
1148
+
1149
+
> Use `anthropic-messages` protocol when:
1150
+
> - Using third-party proxies that only support Anthropic's native `/v1/messages` endpoint (not OpenAI-compatible `/v1/chat/completions`)
1151
+
> - Connecting to services like MiniMax, Synthetic that require Anthropic's native message format
1152
+
> - The existing `anthropic` protocol returns 404 errors (indicating the endpoint doesn't support OpenAI-compatible format)
1153
+
>
1154
+
> **Note:** The `anthropic` protocol uses OpenAI-compatible format (`/v1/chat/completions`), while `anthropic-messages` uses Anthropic's native format (`/v1/messages`). Choose based on your endpoint's supported format.
1155
+
1135
1156
**Ollama (local)**
1136
1157
1137
1158
```json
@@ -1528,6 +1549,7 @@ This happens when another instance of the bot is running. Make sure only one `pi
1528
1549
|**Groq**| Free tier available | Fast inference (Llama, Mixtral) |
1529
1550
|**Cerebras**| Free tier available | Fast inference (Llama, Qwen, etc.) |
1530
1551
|**LongCat**| Up to 5M tokens/day | Fast inference (free tier) |
0 commit comments