From 24320a55cdd8534df9ea343dd0f18502f154f178 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Wed, 7 Feb 2024 12:44:51 +0700
Subject: [PATCH] feat(cl): Added latest turbo models for GPT-3.5 and GPT 4

---
 helpers/tools.ts | 2 +-
 questions.ts     | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/helpers/tools.ts b/helpers/tools.ts
index 13b8ff4b..caf0e299 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 d6f29b8b..62fdb7ec 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;
-- 
GitLab