chore: fix typos

pull/552/head
sigoden 4 months ago
parent 00f3cb182f
commit c0f4d2d712

@ -333,7 +333,7 @@ pub trait Client: Sync + Send {
fn patch_request_body(&self, body: &mut Value) {
let model_name = self.model().name();
if let Some(patch_data) = slect_model_patch(self.patches_config(), model_name) {
if let Some(patch_data) = select_model_patch(self.patches_config(), model_name) {
if body.is_object() && patch_data.request_body.is_object() {
json_patch::merge(body, &patch_data.request_body)
}
@ -374,7 +374,7 @@ pub struct ModelPatch {
pub request_body: Value,
}
pub fn slect_model_patch<'a>(
pub fn select_model_patch<'a>(
patch: Option<&'a ModelPatches>,
name: &str,
) -> Option<&'a ModelPatch> {

@ -234,7 +234,7 @@ impl ToolCall {
let output = if self.is_execute() {
if stdout().is_terminal() {
println!("{prompt}");
let anwser = Text::new("[1] Run, [2] Run & Retrieve, [3] Skip:")
let answer = Text::new("[1] Run, [2] Run & Retrieve, [3] Skip:")
.with_default("1")
.with_validator(|input: &str| match matches!(input, "1" | "2" | "3") {
true => Ok(Validation::Valid),
@ -243,7 +243,7 @@ impl ToolCall {
)),
})
.prompt()?;
match anwser.as_str() {
match answer.as_str() {
"1" => {
let exit_code = run_command(&name, &[arguments], Some(envs))?;
if exit_code != 0 {

Loading…
Cancel
Save