Client settings
- base_url
- https://mewlo.site
- endpoint
- /v1/chat/completions
- auth
- Authorization: Bearer mew_xxxxxxxxx
Docs
Point your coding client at Mewlo, use a Mewlo key, and choose fast, balanced, or premium.
curl https://mewlo.site/v1/chat/completions \
-H "Authorization: Bearer mew_xxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "balanced",
"messages": [
{ "role": "user", "content": "Refactor this function" }
]
}'