Skip to content
Snippets Groups Projects
Commit 24320a55 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

feat(cl): Added latest turbo models for GPT-3.5 and GPT 4

parent 707c2042
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ export type Tool = { ...@@ -6,7 +6,7 @@ export type Tool = {
export const supportedTools: Tool[] = [ export const supportedTools: Tool[] = [
{ {
display: "Google Search (configuration required)", display: "Google Search (configuration required after installation)",
name: "google_search", name: "google_search",
config: { config: {
engine: "Your search engine id", engine: "Your search engine id",
......
...@@ -419,9 +419,9 @@ export const askQuestions = async ( ...@@ -419,9 +419,9 @@ export const askQuestions = async (
name: "model", name: "model",
message: "Which model would you like to use?", message: "Which model would you like to use?",
choices: [ 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", value: "gpt-4" },
{ title: "gpt-4-1106-preview", value: "gpt-4-1106-preview" },
{ {
title: "gpt-4-vision-preview", title: "gpt-4-vision-preview",
value: "gpt-4-vision-preview", value: "gpt-4-vision-preview",
...@@ -585,7 +585,8 @@ export const askQuestions = async ( ...@@ -585,7 +585,8 @@ export const askQuestions = async (
const { tools } = await prompts({ const { tools } = await prompts({
type: "multiselect", type: "multiselect",
name: "tools", 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, choices: toolChoices,
}); });
program.tools = tools; program.tools = tools;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment