AAA
01/05/2026, 3:17 PMVapi Support Bot
01/05/2026, 3:18 PMpython
response = openai.ChatCompletion.create(
model="gpt-4.1-mini",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
# ... (Add messages from conversation history and current prompt)
]
)
This means your 1000-token system prompt will be counted in the prompt tokens for each LLM call.
For token usage benchmarks per minute, no official range is provided in the documentation.
Source:
- [Using Your Server Vapi Docs](https://docs.vapi.ai/customization/custom-llm/using-your-server)Chiranjeet Mishra
01/05/2026, 4:15 PMAAA
01/06/2026, 10:55 AMChiranjeet Mishra
01/06/2026, 6:54 PM