tool_use #1

Open
dubey wants to merge 21 commits from tool_use into main
Showing only changes of commit bbc4bd9115 - Show all commits

13
main.py
View File

@ -93,15 +93,22 @@ def init_db():
db = get_db()
db.execute(
"""
CREATE TABLE IF NOT EXISTS Queries (
id TEXT PRIMARY KEY,
CREATE TABLE IF NOT EXISTS Keys (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL UNIQUE,
api_key TEXT NOT NULL UNIQUE
);
CREATE TABLE IF NOT EXISTS Queries (
id INTEGER PRIMARY KEY AUTOINCREMENT,
request_id TEXT NOT NULL UNIQUE,
ip TEXT NOT NULL,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
query TEXT NOT NULL,
api_key_id INTEGER,
conversation_history TEXT,
FOREIGN KEY (api_key_id) REFERENCES Keys (id)
)
);
"""
)
db.commit()