Releases: withmartian/llm-adapters
Releases · withmartian/llm-adapters
v8.0.1
What's Changed
- V8 by @LukeSamkharadze in #148
Full Changelog: v7.9.0...v8.0.1
Moved to new format, now we use OpenAI SDK format
# OpenAI
from openai import OpenAI
client = OpenAI()
completion = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "developer", "content": "You are a helpful assistant."},
]
)
# New Adapters
from llm_adapters import OpenAI
client = OpenAI()
completion = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "developer", "content": "You are a helpful assistant."},
]
)
v7.9.0
v7.8.0
What's Changed
- Add deepseek models for together fireworks deepinfra providers by @ashleyzhang01 in #142
- Add openai o3 mini by @ashleyzhang01 in #143
- Bump library version by @ashleyzhang01 in #144
- add yml for version check github action by @ashleyzhang01 in #145
- Add deepseek provider by @ashleyzhang01 in #146
- fix typo in README by @onjas-buidl in #147
- Feat/sonnet 3.7 n gemini 2.0 by @LukeSamkharadze in #149
New Contributors
- @onjas-buidl made their first contribution in #147
Full Changelog: v7.4.0...v7.8.0
v7.4.0
What's Changed
- feat: add support for extra body, headers and query by @LukeSamkharadze in #141
Full Changelog: v7.3.0...v7.4.0
v7.3.0
What's Changed
- docs: update readme by @LukeSamkharadze in #139
- chore: upgrade packages by @LukeSamkharadze in #140
Full Changelog: v7.2.0...v7.3.0
v7.2.0
Changes
- Update README.md @LukeSamkharadze (#137)
🚀 Features
- feat: add more params support @LukeSamkharadze (#138)
v7.1.0
What's Changed
- feat: add moescape tensoropera support by @LukeSamkharadze in #136
- fix: completion streaming
Full Changelog: v7.0.0...v7.1.0
v7.0.0
Changes
- fix(big model): pricing @LukeSamkharadze (#134)
- BigModel Provider Addition @Oelshehawi (#132)
🚀 Features
- Feat/add completion moescape @LukeSamkharadze (#135)
v7.0.0a2
Changes
- feat: add release draft @LukeSamkharadze (#131)
7.0.0a0
What's Changed
- Feat/v7 by @LukeSamkharadze in #123
Full Changelog: 6.11.0...7.0.0a0
- Is backwards compatible
- Move from circle ci to Github Actions
- Adapters auto updating models tracking page
- Stricter linting rules
- Updated all dependencies to latest version, removed unused dependencies
- Reduced bundle size
- Moved to ruff, removed pylons
- Started using all to expose public facing interface
- Typed 100% internal functions (Some parts still use Any, and general dict)
- Removed unused code
- Added support for only system and assistant conversations
- Removed function calling, in favor of tools
- Together added vision support (Doesn’t support multiple images)
- Cohere added streaming, function calling, json content and json output support
- Cohere fix temperature scaling to OpenAI format
- Fireworks add vision
- And much more