add workflow 市场-Agents调度,dev

This commit is contained in:
root 2025-12-09 14:39:51 +08:00
parent 75be906ead
commit 3131deb0b0
1 changed files with 2 additions and 2 deletions

View File

@ -188,9 +188,9 @@ def main():
custom_query = """ WITH numbered_urls AS (
SELECT
web_url,
(ROW_NUMBER() OVER (ORDER BY web_url) - 1) / 10 as batch_num
(ROW_NUMBER() OVER (ORDER BY web_url) - 1) / 5 as batch_num
FROM p70_ai_intelligence.t_channel
WHERE type = 'News' and lower(industry) = 'auto'
WHERE type = 'News'
)
SELECT
STRING_AGG(web_url, E'\n') as batched_urls