An attempt to recreate Claude-style verbosity, but don't expect the same level of coherence or memory. Meant for use in roleplay/narrative situations.
# Запрос к API VEGA через mancer/weaver
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "mancer/weaver",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'