feat: use llama
Some checks failed
Deploy / lint-build-deploy (push) Failing after 57s

This commit is contained in:
2026-02-01 13:03:51 +01:00
parent e51942a9b2
commit 7d1ef8a7e5
10 changed files with 13205 additions and 1058 deletions

View File

@@ -7,7 +7,7 @@ datasource db {
url = env("DATABASE_URL")
}
model AnthropicQuery {
model AiQuery {
id String @id @default(cuid())
question String @db.Text
response String @db.Text
@@ -17,7 +17,7 @@ model AnthropicQuery {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@map("anthropic_queries")
@@map("ai_queries")
@@index([createdAt])
@@index([success])
}