PercivalFletcher commited on
Commit
cd022f7
·
verified ·
1 Parent(s): c56dc42

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +15 -5
main.py CHANGED
@@ -77,15 +77,25 @@ async def check_request_format(request: RequestPacket):
77
 
78
  # The mock response logic remains the same
79
  mock_response = ResponsePacket(
80
- summary="This is a simulated summary for the flexible input provided.",
81
  analysis=Analysis(
82
  isMisinformation=True,
83
- reasoning="The claim contradicts established facts.",
84
- confidenceScore=0.88
85
  ),
86
  sources=[
87
- Source(name="Verified Source A", description="Provides conflicting data."),
88
- Source(name="FactCheck Organization B", description="Previously debunked a similar claim.")
 
 
 
 
 
 
 
 
 
 
89
  ]
90
  )
91
 
 
77
 
78
  # The mock response logic remains the same
79
  mock_response = ResponsePacket(
80
+ summary="The provided content appears to be a satirical piece, but it is being shared in contexts that suggest it is factual news, which can mislead audiences.",
81
  analysis=Analysis(
82
  isMisinformation=True,
83
+ reasoning="The core claim originates from a known satirical website. While not intentionally malicious, its presentation lacks clear satirical markers, leading to its spread as genuine misinformation.",
84
+ confidenceScore=0.95
85
  ),
86
  sources=[
87
+ Source(
88
+ name="The Daily Satire Times",
89
+ description="The original publisher of the article, which is officially listed as a satirical publication."
90
+ ),
91
+ Source(
92
+ name="Cross-Platform Fact-Check Initiative",
93
+ description="Shows multiple instances where this article was shared on social media without satire labels, leading to user confusion."
94
+ ),
95
+ Source(
96
+ name="Media Literacy Hub",
97
+ description="Provides guidelines on how to identify satire versus fake news."
98
+ )
99
  ]
100
  )
101