diff --git a/helpers/tools.ts b/helpers/tools.ts index 13b8ff4bfe20e27712ae8bac7bedf009c87ad4e8..caf0e299ce340870b93d5129c53aa6453be64b3c 100644 --- a/helpers/tools.ts +++ b/helpers/tools.ts @@ -6,7 +6,7 @@ export type Tool = { export const supportedTools: Tool[] = [ { - display: "Google Search (configuration required)", + display: "Google Search (configuration required after installation)", name: "google_search", config: { engine: "Your search engine id", diff --git a/questions.ts b/questions.ts index d6f29b8b1c7074786c975be3821f3e8dffd27231..62fdb7eca0225a97b342d6f07d42a6ab1015b1d8 100644 --- a/questions.ts +++ b/questions.ts @@ -419,9 +419,9 @@ export const askQuestions = async ( name: "model", message: "Which model would you like to use?", choices: [ - { title: "gpt-3.5-turbo", value: "gpt-3.5-turbo" }, + { title: "gpt-3.5-turbo", value: "gpt-3.5-turbo-0125" }, + { title: "gpt-4-turbo-preview", value: "gpt-4-turbo-preview" }, { title: "gpt-4", value: "gpt-4" }, - { title: "gpt-4-1106-preview", value: "gpt-4-1106-preview" }, { title: "gpt-4-vision-preview", value: "gpt-4-vision-preview", @@ -585,7 +585,8 @@ export const askQuestions = async ( const { tools } = await prompts({ type: "multiselect", name: "tools", - message: "Which tools would you like to use?", + message: + "Would you like to build an agent using tools? If so, select the tools here, otherwise just press enter", choices: toolChoices, }); program.tools = tools;