add_deep_research_app.sql 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. -- 添加深度研究应用到百宝箱
  2. INSERT INTO aigcspace.toolbox_apps (
  3. app_key,
  4. name,
  5. description,
  6. icon,
  7. category,
  8. tags,
  9. is_new,
  10. version,
  11. status,
  12. sort_order,
  13. doc_url,
  14. api_endpoint
  15. ) VALUES (
  16. 'qwen-deep-research',
  17. 'Qwen深度研究',
  18. '基于通义千问的深度研究助手,能够自动规划研究步骤、执行多轮深入搜索、信息整合与分析,生成结构化研究报告。支持详细报告(约6000字)和摘要报告(约2000字)两种格式。',
  19. 'BookOpen',
  20. '文本处理',
  21. '["深度研究", "智能搜索", "报告生成", "信息整合"]'::jsonb,
  22. true,
  23. 'v1.0',
  24. 'active',
  25. 100,
  26. 'https://help.aliyun.com/zh/model-studio/developer-reference/qwen-deep-research',
  27. '/api/v1/research'
  28. ) ON CONFLICT (app_key) DO UPDATE SET
  29. name = EXCLUDED.name,
  30. description = EXCLUDED.description,
  31. icon = EXCLUDED.icon,
  32. category = EXCLUDED.category,
  33. tags = EXCLUDED.tags,
  34. is_new = EXCLUDED.is_new,
  35. version = EXCLUDED.version,
  36. status = EXCLUDED.status,
  37. sort_order = EXCLUDED.sort_order,
  38. doc_url = EXCLUDED.doc_url,
  39. api_endpoint = EXCLUDED.api_endpoint,
  40. updated_at = CURRENT_TIMESTAMP;