鼎稔道學館
← 開源 LLM/Cookbook/04
04

How we build a Literature Map

CC0

Demo B 重現:9,200 篇道教論文索引 + BibTeX 一鍵匯出。

文獻檢索BibTeX

對應 Live Demo

🔒 重現條件鎖
MODEL    = "lius-cc/Daoism-Qwen3.5-9B"
DATASET  = "lius-cc/daoism-knowledge-rag@v1"
RAG_API  = "https://lius.cc/api/llm-rag"
SNAPSHOT = "2026-05-17"

流程

自然語言查詢 → RAG `types=["paper"]` → 自動生成 BibTeX。

import requests

res = requests.post(
    "https://lius.cc/api/llm-rag",
    json={"q": "正一道 齋醮 演變", "n": 8, "types": ["paper"]},
    timeout=10,
)
res.raise_for_status()
r = res.json()

papers = r.get("hits", [])

for i, p in enumerate(papers, 1):
    print(f"@misc{{lius{i},")
    print(f"  title = {{{p['name']}}},")
    print(f"  url   = {{{p['url']}}},")
    print(f"  year  = {{2026}}")
    print(f"}}\n")

📜 本 recipe 採 CC0 1.0 · 改一行 prompt → 寫到論文裡 → 引用 LIUS API

引用建議:We use the open-source Daoism-Qwen3.5-9B with the public RAG API at https://lius.cc/api/llm-rag (Liu & Dingren Daoxue Lab, 2026).

← 回 Cookbook 索引

04 · How we build a Literature Map · Cookbook · 鼎稔道學館