SQLiteGPT
1.0.0
SQLite的SQL函數可以直接查詢OpenAI的ChatGPT。
npm install --global sqlitegpt
export OPENAI_API_KEY= " sk-XXX "
sqlitegpt example.sqlite " SELECT gpt('Name of tallest mountain') "
import { sqliteGpt } from "sqlitegpt"
sqliteGpt (
":memory:" ,
"SELECT gpt('Name of tallest mountain') as tallest_mountain"
)
sqliteGpt (
"example.sqlite" ,
`
SELECT
country,
gpt('capital of ' || country || ', no explanation') as capital
FROM users
`
)
sync-request
強制HTTP請求同步。你不應該在生產中使用它!然而,它是目前使其與better-sqlite3
一起使用的唯一方法。如果您喜歡 SQLiteGPT,請為該專案加註星標,我將使用 sqlite-loadable-rs 將其重新實作為 Rust 中的適當可載入擴充功能。