1 Commits

Author SHA1 Message Date
William Jeynes cbaab3d251 make prompt worse 2026-03-25 22:35:15 +00:00
2 changed files with 3 additions and 13 deletions
+2 -11
View File
@@ -3,10 +3,9 @@ Once the information has been created as below, a dataset can be created to feed
There is a false disinformation claim circulating:
###NTITLE###
Produce up-to 5 specific "trigger events" that happened that could have led to the spread of this disinformation.
Produce up-to 5 specific events that happened that have led to the spread of this disinformation.
Remember the time frame of the disinformation campaign: ###CDATE###
Include no information or events that would not have been available at the time.
Produce no more text other than the json.
@@ -14,16 +13,8 @@ Include a concise but specific search query that can be looked up on a search en
Include a url to a source for your trigger event (not a web search, a specific url from a reputuable source). Do not use OAI cite, include url as text in response.
Include the date that the event happened ("March 2022" for exmaple)
Use a JSON format with each entry containing "Event,ReasoningWhyRelevant,SearchQuery,Url,Date".
Use a JSON format with each entry containing "Event,ReasoningWhyRelevant,SearchQuery,Url".
Multiple tool invocations should be requested at once, if applicable.
Use your abilities to look between the lines and produce some insightful analysis, thinking both short and long term.
Events will be reordered as part of processing, each statement must stand alone
The preceeding messages act as examples of previous responses to potentially ficitonal events and scores given.
Analysis should only be completed for proposed events that would graner >0.7 points
Lets go through it step by step
-1
View File
@@ -9,7 +9,6 @@ export const ProposedTriggerEvent = z.object({
ReasoningWhyRelevant: z.string(),
SearchQuery: z.string(),
Url: z.url(),
Date: z.string(),
context: z.string().optional(),
score: z.number().optional()
})