Spelling (#7137)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -710,7 +710,7 @@ enum Command {
|
||||
short,
|
||||
long,
|
||||
help = "Resume a previous session (last used or specified by --name/--session-id)",
|
||||
long_help = "Continue from a previous session. If --name or --session-id is provided, resumes that specific session. Otherwise resumes the most recently used session."
|
||||
long_help = "Continue from a previous session. If --name or --session-id is provided, resumes that specific session. Otherwise, resumes the most recently used session."
|
||||
)]
|
||||
resume: bool,
|
||||
|
||||
@@ -719,7 +719,7 @@ enum Command {
|
||||
long,
|
||||
requires = "resume",
|
||||
help = "Fork a previous session (creates new session with copied history)",
|
||||
long_help = "Create a new session by copying all messages from a previous session. Must be used with --resume. If --name or --session-id is provided, forks that specific session. Otherwise forks the most recently used session."
|
||||
long_help = "Create a new session by copying all messages from a previous session. Must be used with --resume. If --name or --session-id is provided, forks that specific session. Otherwise, forks the most recently used session."
|
||||
)]
|
||||
fork: bool,
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ use goose::session::SessionType;
|
||||
use serde_json::Value;
|
||||
use std::collections::HashMap;
|
||||
|
||||
// useful for light themes where there is no dicernible colour contrast between
|
||||
// useful for light themes where there is no discernible colour contrast between
|
||||
// cursor-selected and cursor-unselected items.
|
||||
const MULTISELECT_VISIBILITY_HINT: &str = "<";
|
||||
|
||||
@@ -1587,7 +1587,7 @@ fn configure_recipe_dialog() -> anyhow::Result<()> {
|
||||
.ok()
|
||||
.or_else(|| config.get_param(key_name).unwrap_or(None));
|
||||
let mut recipe_repo_input = cliclack::input(
|
||||
"Enter your goose recipe Github repo (owner/repo): eg: my_org/goose-recipes",
|
||||
"Enter your goose recipe GitHub repo (owner/repo): eg: my_org/goose-recipes",
|
||||
)
|
||||
.required(false);
|
||||
if let Some(recipe_repo) = default_recipe_repo {
|
||||
|
||||
@@ -198,7 +198,7 @@ pub enum PlannerResponseType {
|
||||
ClarifyingQuestions,
|
||||
}
|
||||
|
||||
/// Decide if the planner's reponse is a plan or a clarifying question
|
||||
/// Decide if the planner's response is a plan or a clarifying question
|
||||
///
|
||||
/// This function is called after the planner has generated a response
|
||||
/// to the user's message. The response is either a plan or a clarifying
|
||||
@@ -1820,7 +1820,7 @@ async fn get_reasoner() -> Result<Arc<dyn Provider>, anyhow::Error> {
|
||||
|
||||
let config = Config::global();
|
||||
|
||||
// Try planner-specific provider first, fallback to default provider
|
||||
// Try planner-specific provider first, fall back to default provider
|
||||
let provider = if let Ok(provider) = config.get_param::<String>("GOOSE_PLANNER_PROVIDER") {
|
||||
provider
|
||||
} else {
|
||||
@@ -1830,7 +1830,7 @@ async fn get_reasoner() -> Result<Arc<dyn Provider>, anyhow::Error> {
|
||||
.expect("No provider configured. Run 'goose configure' first")
|
||||
};
|
||||
|
||||
// Try planner-specific model first, fallback to default model
|
||||
// Try planner-specific model first, fall back to default model
|
||||
let model = if let Ok(model) = config.get_param::<String>("GOOSE_PLANNER_MODEL") {
|
||||
model
|
||||
} else {
|
||||
|
||||
@@ -107,7 +107,7 @@ const THINKING_MESSAGES: &[&str] = &[
|
||||
"Visualizing vectors",
|
||||
"Wrangling widgets",
|
||||
"Yodeling yaml",
|
||||
"Aligning artificial awarenesses",
|
||||
"Aligning artificial awareness",
|
||||
"Bootstrapping brain bytes",
|
||||
"Contemplating code conundrums",
|
||||
"Distilling digital dreams",
|
||||
|
||||
Reference in New Issue
Block a user