I have an LLM model and want to add it to OpenClaw, but I don't know how to configure it because I can't access the OpenClaw CLI. Please guide me.
curl -X POST https://**********.workers.dev \
-H "Authorization: Bearer ***********" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Write a short poem about a rainy day.",
"systemPrompt": "You are a helpful assistant.",
"history": [
{ "role": "user", "content": "Tell me something about weather." },
{ "role": "assistant", "content": "Weather is the state of the atmosphere." }
]
}'
I have an LLM model and want to add it to OpenClaw, but I don't know how to configure it because I can't access the OpenClaw CLI. Please guide me.