Allow user to choose a conversation model

This commit is contained in:
2024-04-18 15:36:26 +01:00
parent 8b94651a84
commit 3d298fabbc
3 changed files with 12 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
tracing::info!("Starting conversation...");
let mut conversation = Dialogue::new();
let mut conversation = Dialogue::new("gemini-pro");
loop {
let message: String = Input::with_theme(&ColorfulTheme::default())
.with_prompt("user")