New Models
- `azure/text-embedding-3-large`
- `azure/text-embedding-3-small`
- `mistral/mistral-large-latest`
Log LLM Output in ClickHouse DB
python
litellm.success_callback = ["clickhouse"]
await litellm.acompletion(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": f"This is a test"}],
max_tokens=10,
temperature=0.7,
user="ishaan-2",
)
What's Changed
* [FEAT] add cost for azure/text-embedding-3-large, azure/text-embedding-3-small by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2198
* [FEAT] Use Logging on clickhouse by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2187
* Litellm custom callback fix by krrishdholakia in https://github.com/BerriAI/litellm/pull/2202
**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.27.4...v1.27.6