curl --location 'https://api.portkey.ai/v1/chat/completions' \ --header 'X-portkey-provider: anthropic' \ --header 'x-portkey-virtual-key: ${VIRTUAL_KEY}' \ --header 'Content-Type: application/json' \ --header 'x-portkey-api-key: ${PORTKEY_API_KEY}' \ --header 'x-portkey-config: {"retry":{"attempts":3},"cache":{"mode":"simple"},"after_request_hooks":[{"id":"pg-wolf-c-ccee4e"}]}' \ --data '{ "model": "claude-3-5-haiku-latest", "max_tokens": 100, "stream": false, "messages": [ { "role": "system", "content": [ { "type": "text", "text": "you are helpful" } ] }, { "role": "user", "content": [ { "type": "text", "text": "say wolf" } ] } ] }'