We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9e758b commit 47f0781Copy full SHA for 47f0781
asknews_sdk/dto/base.py
@@ -106,6 +106,29 @@ class Article(BaseModel):
106
] = None
107
assets: Optional[Assets] = None
108
social_embeds: Optional[SocialEmbeds] = None
109
+ bias: Optional[
110
+ Literal[
111
+ "Political",
112
+ "Gender",
113
+ "Cultural",
114
+ "Age",
115
+ "Religious",
116
+ "Statement",
117
+ "Illogical Claims",
118
+ "Slant",
119
+ "Source Selection",
120
+ "Omission of Source Attribution",
121
+ "Spin",
122
+ "Sensationalism",
123
+ "Negativity",
124
+ "Subjective Adjectives",
125
+ "Ad Hominem",
126
+ "Mind Reading",
127
+ "Opinion-as-Fact",
128
+ "None",
129
+ "Unknown",
130
+ ]
131
+ ] = None
132
133
134
class PingResponse(BaseSchema):
0 commit comments