Compare commits
2 Commits
release-66
...
release-68
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4aea68ee58 | ||
|
|
2f88c43236 |
@@ -173,12 +173,12 @@ type TosReview = {
|
|||||||
/** In regards to KYC, Privacy, Anonymity, Self-Sovereignity, etc. */
|
/** In regards to KYC, Privacy, Anonymity, Self-Sovereignity, etc. */
|
||||||
/** anything that could harm the user's privacy, identity, self-sovereignity or anonymity is negative, anything that otherwise helps is positive. else it is neutral. */
|
/** anything that could harm the user's privacy, identity, self-sovereignity or anonymity is negative, anything that otherwise helps is positive. else it is neutral. */
|
||||||
rating: 'negative' | 'neutral' | 'positive'
|
rating: 'negative' | 'neutral' | 'positive'
|
||||||
}[]
|
}[] // max 8 highlights, try to provide at least 3.
|
||||||
}
|
}
|
||||||
|
|
||||||
The rating is a number between 0 and 2, where 0 is informative, 1 is warning, and 2 is critical.
|
The rating is a number between 0 and 2, where 0 is informative, 1 is warning, and 2 is critical.
|
||||||
|
|
||||||
Do not provide more than 8 highlights. Focus on the most important information for the user. Be concise but thorough, and make sure your output is properly formatted JSON.
|
Focus on the most important information for the user. Be concise and thorough, and make sure your output is properly formatted JSON.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
PROMPT_COMMENT_SENTIMENT_SUMMARY = """
|
PROMPT_COMMENT_SENTIMENT_SUMMARY = """
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
/*
|
||||||
|
Warnings:
|
||||||
|
|
||||||
|
- Made the column `feedId` on table `User` required. This step will fail if there are existing NULL values in that column.
|
||||||
|
|
||||||
|
*/
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "User" ALTER COLUMN "feedId" SET NOT NULL;
|
||||||
@@ -498,7 +498,7 @@ model User {
|
|||||||
moderator Boolean @default(false)
|
moderator Boolean @default(false)
|
||||||
verifiedLink String?
|
verifiedLink String?
|
||||||
secretTokenHash String @unique
|
secretTokenHash String @unique
|
||||||
feedId String? @unique @default(cuid(2))
|
feedId String @unique @default(cuid(2))
|
||||||
/// Computed via trigger. Do not update through prisma.
|
/// Computed via trigger. Do not update through prisma.
|
||||||
totalKarma Int @default(0)
|
totalKarma Int @default(0)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user