Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkShawn2020 committed Nov 24, 2024
1 parent 5646654 commit 74e7e13
Show file tree
Hide file tree
Showing 3 changed files with 616 additions and 11 deletions.
2 changes: 1 addition & 1 deletion apps/totem-gen
14 changes: 14 additions & 0 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,8 @@ model EvalApp {
// Optional
// Defaults to 0
// 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.
//
// We generally recommend altering this or temperature but not both.
frequencyPenalty Float? @default(0)
// number or null
Expand Down Expand Up @@ -1107,3 +1109,15 @@ model SocialPlatformPost {
@@schema("social-platform")
}

model Generation {
id String @id @default(cuid())
userId String
prompt String
result String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@index([userId])
@@schema("llm")
}
Loading

0 comments on commit 74e7e13

Please sign in to comment.