Spaces:
Sleeping
Sleeping
Update main.py
Browse files
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="
|
| 81 |
analysis=Analysis(
|
| 82 |
isMisinformation=True,
|
| 83 |
-
reasoning="The claim
|
| 84 |
-
confidenceScore=0.
|
| 85 |
),
|
| 86 |
sources=[
|
| 87 |
-
Source(
|
| 88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|