
#### Release Notes: - Added support for [LM Studio](https://lmstudio.ai/) to the Assistant. #### Quick demo: https://github.com/user-attachments/assets/af58fc13-1abc-4898-9747-3511016da86a #### Future enhancements: - wire up tool calling (new in [LM Studio 0.3.6](https://lmstudio.ai/blog/lmstudio-v0.3.6)) --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
7 lines
209 B
Rust
7 lines
209 B
Rust
pub mod cloud_model;
|
|
|
|
pub use anthropic::Model as AnthropicModel;
|
|
pub use cloud_model::*;
|
|
pub use lmstudio::Model as LmStudioModel;
|
|
pub use ollama::Model as OllamaModel;
|
|
pub use open_ai::Model as OpenAiModel;
|