Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions crates/goose-cli/src/commands/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use std::path::{Path, PathBuf};
use std::process;

use crate::profile::{get_provider_config, load_profiles, Profile};
use crate::prompt::cliclack::CliclackPrompt;
use crate::prompt::rustyline::RustylinePrompt;
use crate::prompt::Prompt;
use crate::session::{ensure_session_dir, get_most_recent_session, Session};
Expand Down Expand Up @@ -50,7 +49,6 @@ pub fn build_session<'a>(
let agent = Box::new(Agent::new(provider));
let prompt = match std::env::var("GOOSE_INPUT") {
Ok(val) => match val.as_str() {
"cliclack" => Box::new(CliclackPrompt::new()) as Box<dyn Prompt>,
"rustyline" => Box::new(RustylinePrompt::new()) as Box<dyn Prompt>,
_ => Box::new(RustylinePrompt::new()) as Box<dyn Prompt>,
},
Expand Down
1 change: 0 additions & 1 deletion crates/goose-cli/src/prompt.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use anyhow::Result;
use goose::message::Message;

pub mod cliclack;
pub mod renderer;
pub mod rustyline;
pub mod thinking;
Expand Down
189 changes: 0 additions & 189 deletions crates/goose-cli/src/prompt/cliclack.rs

This file was deleted.

Loading