Skip to content

Commit 74e7e13

Browse files
committed
.
1 parent 5646654 commit 74e7e13

File tree

3 files changed

+616
-11
lines changed

3 files changed

+616
-11
lines changed

apps/totem-gen

prisma/schema.prisma

+14
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,8 @@ model EvalApp {
584584
// Optional
585585
// Defaults to 0
586586
// Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
587+
//
588+
// We generally recommend altering this or temperature but not both.
587589
frequencyPenalty Float? @default(0)
588590
589591
// number or null
@@ -1107,3 +1109,15 @@ model SocialPlatformPost {
11071109
11081110
@@schema("social-platform")
11091111
}
1112+
1113+
model Generation {
1114+
id String @id @default(cuid())
1115+
userId String
1116+
prompt String
1117+
result String
1118+
createdAt DateTime @default(now())
1119+
updatedAt DateTime @updatedAt
1120+
1121+
@@index([userId])
1122+
@@schema("llm")
1123+
}

0 commit comments

Comments
 (0)