Merge pull request #336 from davemorin/fix/319-xquik-source-capabilities
fix(planner): register xquik in SOURCE_CAPABILITIES (#319)
This commit is contained in:
@@ -19,14 +19,14 @@ ALLOWED_INTENTS = {
|
|||||||
}
|
}
|
||||||
ALLOWED_CLUSTER_MODES = {"none", "story", "workflow", "market", "debate"}
|
ALLOWED_CLUSTER_MODES = {"none", "story", "workflow", "market", "debate"}
|
||||||
QUICK_SOURCE_PRIORITY = {
|
QUICK_SOURCE_PRIORITY = {
|
||||||
"factual": ["hackernews", "reddit", "x", "youtube"],
|
"factual": ["hackernews", "reddit", "x", "xquik", "youtube"],
|
||||||
"product": ["youtube", "reddit", "x", "tiktok"],
|
"product": ["youtube", "reddit", "x", "xquik", "tiktok"],
|
||||||
"concept": ["hackernews", "reddit", "x", "youtube"],
|
"concept": ["hackernews", "reddit", "x", "xquik", "youtube"],
|
||||||
"opinion": ["reddit", "x", "youtube", "hackernews"],
|
"opinion": ["reddit", "x", "xquik", "youtube", "hackernews"],
|
||||||
"how_to": ["youtube", "reddit", "x", "hackernews"],
|
"how_to": ["youtube", "reddit", "x", "xquik", "hackernews"],
|
||||||
"comparison": ["reddit", "x", "hackernews", "youtube"],
|
"comparison": ["reddit", "x", "xquik", "hackernews", "youtube"],
|
||||||
"breaking_news": ["x", "reddit", "hackernews", "youtube", "polymarket"],
|
"breaking_news": ["x", "xquik", "reddit", "hackernews", "youtube", "polymarket"],
|
||||||
"prediction": ["polymarket", "x", "hackernews", "reddit", "youtube"],
|
"prediction": ["polymarket", "x", "xquik", "hackernews", "reddit", "youtube"],
|
||||||
}
|
}
|
||||||
SOURCE_PRIORITY = {
|
SOURCE_PRIORITY = {
|
||||||
"factual": ["hackernews", "reddit", "x", "youtube"],
|
"factual": ["hackernews", "reddit", "x", "youtube"],
|
||||||
@@ -60,6 +60,7 @@ INTENT_SOURCE_EXCLUSIONS: dict[str, set[str]] = {
|
|||||||
SOURCE_CAPABILITIES = {
|
SOURCE_CAPABILITIES = {
|
||||||
"reddit": {"discussion", "social"},
|
"reddit": {"discussion", "social"},
|
||||||
"x": {"discussion", "social"},
|
"x": {"discussion", "social"},
|
||||||
|
"xquik": {"discussion", "social"},
|
||||||
"youtube": {"video", "video_longform", "discussion"},
|
"youtube": {"video", "video_longform", "discussion"},
|
||||||
"tiktok": {"video", "video_shortform", "social"},
|
"tiktok": {"video", "video_shortform", "social"},
|
||||||
"instagram": {"video", "video_shortform", "social"},
|
"instagram": {"video", "video_shortform", "social"},
|
||||||
|
|||||||
Reference in New Issue
Block a user