ZIm/crates/language_models/src/provider.rs
Marshall Bowers cbba44900d
Add language_models crate to house language model providers (#20945)
This PR adds a new `language_models` crate to house the various language
model providers.

By extracting the provider definitions out of `language_model`, we're
able to remove `language_model`'s dependency on `editor`, which improves
incremental compilation when changing `editor`.

Release Notes:

- N/A
2024-11-20 18:49:34 -05:00

6 lines
105 B
Rust

pub mod anthropic;
pub mod cloud;
pub mod copilot_chat;
pub mod google;
pub mod ollama;
pub mod open_ai;