Skip to content

Commit fd09364

Browse files
committed
docs: Update README
1 parent 4c21d50 commit fd09364

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ Check out the [linked project](https://github.com/zAlweNy26/ts-cat/projects?quer
4343
- [x] Instant tool call hook
4444
- [x] Granular management of procedures (forms and tools)
4545
- [x] Supports cron jobs (without saving to memory)
46+
- [x] Rate limiter
47+
- [x] Database query executor
48+
- [x] Supports streaming both in WebSocket and HTTP
4649
- [ ] Built-in CLI
4750
- [ ] Supports multimodality
4851

src/looking_glass/stray-cat.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,7 @@ ${labelsList}${examplesList}
266266
const db = await SqlDatabase.fromDataSourceParams({ appDataSource })
267267

268268
const executeQuery = new QuerySqlTool(db)
269-
const writeQuery = await createSqlQueryChain({
270-
llm: this.currentLLM,
271-
db,
272-
dialect: type,
273-
})
269+
const writeQuery = await createSqlQueryChain({ llm: this.currentLLM, db, dialect: type })
274270

275271
const answerPrompt = PromptTemplate.fromTemplate(
276272
`Given the following user question, corresponding SQL query, and SQL result, answer the user question.
@@ -288,6 +284,7 @@ ${labelsList}${examplesList}
288284
}),
289285
answerChain,
290286
])
287+
291288
return await chain.invoke({ question })
292289
}
293290

0 commit comments

Comments
 (0)