This PR adds a new component to the `language_models` crate called `ConfiguredApiCard`: <img width="500" height="420" alt="Screenshot 2025-11-09 at 2 07@2x" src="https://github.com/user-attachments/assets/655ea941-2df8-4489-a4da-bba34acf33a9" /> We were previously recreating this component from scratch with regular divs in all LLM providers render function, which was redundant as they all essentially looked the same and didn't have any major variations aside from labels. We can clean up a bunch of similar code with this change, which is cool! Release Notes: - N/A
5 lines
160 B
Rust
5 lines
160 B
Rust
pub mod configured_api_card;
|
|
pub mod instruction_list_item;
|
|
pub use configured_api_card::ConfiguredApiCard;
|
|
pub use instruction_list_item::InstructionListItem;
|