Gateway Integration Examples
1. OpenAI-Compatible Endpoints
curl -X POST "https://api.highflame.app/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $LLM_API_KEY" \
-H "X-Highflame-apikey: $HIGHFLAME_API_KEY" \
-H "X-Highflame-route: $HIGHFLAME_ROUTE_OPENAI_COMPATIBLE" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me about Javelin."}
],
"temperature": 0.7,
"max_tokens": 150
}'
2. Azure OpenAI API Endpoints
3. AWS Bedrock API Endpoints
Endpoint
Method
Description
Last updated