We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5de19c commit c890e12Copy full SHA for c890e12
examples/src/agents/sql.ts
@@ -15,9 +15,9 @@ export const run = async () => {
15
const db = await SqlDatabase.fromDataSourceParams({
16
appDataSource: datasource,
17
});
18
- const tookit = new SqlToolkit(db);
+ const toolkit = new SqlToolkit(db);
19
const model = new OpenAI({ temperature: 0 });
20
- const executor = createSqlAgent(model, tookit);
+ const executor = createSqlAgent(model, toolkit);
21
22
const input = `List the total sales per country. Which country's customers spent the most?`;
23
0 commit comments