File size: 471 Bytes
4ec8dba |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Completion Function - completion()
Here's the exact json output you can expect from a litellm `completion` call:
```python
{'choices': [{'finish_reason': 'stop',
'index': 0,
'message': {'role': 'assistant',
'content': " I'm doing well, thank you for asking. I am Claude, an AI assistant created by Anthropic."}}],
'created': 1691429984.3852863,
'model': 'claude-instant-1',
'usage': {'prompt_tokens': 18, 'completion_tokens': 23, 'total_tokens': 41}}
``` |