1 Matching Annotations
  1. Jun 2026
    1. The BQ pass writes one OKF doc per concept the source advertises, using BigQuery metadata alone. The web pass then runs the LLM as its own crawler

      两遍式enrichment是这个参考实现最有价值的工程模式:第一遍用数据库元数据快速生成骨架文档(结构化、快速、无LLM成本),第二遍用LLM爬取官方文档、用网络知识来填充上下文和语义。这两遍的分工对应了知识的两个来源:系统已知的结构性事实(schema、类型、外键),和人类沉淀在文档里的语义知识(这张表是什么、为什么存在、怎么使用)。两遍结合才能生产出真正有用的OKF文档,而不只是表结构的dump。