@@ -134,13 +134,15 @@ export async function test(): Promise<void> {
134134 // ],
135135 // cwd: "/tmp" // the working directory to be use by the server
136136 // },
137+
137138 // "sequential-thinking": {
138139 // command: "npx",
139140 // args: [
140141 // "-y",
141142 // "@modelcontextprotocol/server-sequential-thinking"
142143 // ]
143144 // },
145+
144146 // playwright: {
145147 // command: "npx",
146148 // args: [
@@ -193,8 +195,7 @@ export async function test(): Promise<void> {
193195 const llm = new ChatGoogleGenerativeAI ( {
194196 // https://ai.google.dev/gemini-api/docs/pricing
195197 // https://console.cloud.google.com/billing
196- model : "gemini-2.0-flash"
197- // model: "gemini-2.5-flash"
198+ model : "gemini-2.5-flash"
198199 // model: "gemini-2.5-pro"
199200 } ) ;
200201
@@ -230,11 +231,11 @@ export async function test(): Promise<void> {
230231 // const query = "Read and briefly summarize the LICENSE file";
231232 // const query = "Tell me how many of directories in `.`";
232233 // const query = "Tell me how many github repositories I have?"
233- // const query = "Make a DB and put items fruits, apple and orange, with counts 123 and 345 respectively";
234- // const query = "Put items fruits, apple and orange, with counts 123 and 456 respectively to the DB, " +
235- // "increment the coutns by 1, and show all the items in the DB.";
234+ // const query = "Make a new table in DB and put items apple and orange with counts 123 and 345 respectively, " +
235+ // "then increment the coutns by 1, and show all the items in the table."
236236 // const query = "Use sequential thinking to arrange these events of backing bread " +
237- // "in the correct sequence: baking, proofing, mixing, kneading, cooling";
237+ // "in the correct sequence: baking, proofing, mixing, kneading, cooling";
238+ // const query = "Open bbc.com page";
238239 // const query = "Tell me about my Notion account";
239240 // const query = "What's the news from Tokyo today?";
240241
0 commit comments