当前位置: 首页
AI教程
Python解析llms.txt一键生成大语言模型上下文XML详细教程

Python解析llms.txt一键生成大语言模型上下文XML详细教程

热心网友 时间:2026-06-17
转载

最近在研究 LLM 上下文工程(Context Engineering)时,发现一个特别实用的工具——`llms-txt`。它的职责非常纯粹:将项目里的 `llms txt` 文件转换成大型语言模型能够直接理解的 XML 上下文文档。 做 AI Agent、RAG、Claude 项目或 Prompt

最近在研究 LLM 上下文工程(Context Engineering)时,发现一个特别实用的工具——`llms-txt`。它的职责非常纯粹:将项目里的 `llms.txt` 文件转换成大型语言模型能够直接理解的 XML 上下文文档。 做 AI Agent、RAG、Claude 项目或 Prompt 工程的同学,应该都遇到过这样的需求:如何把项目文档自动整理成模型可读的结构化信息?这个工具正是为此而生。 下面从概念到操作,完整梳理它的用法和原理。 ## Python 解析 llms.txt 的教程:一键生成 LLM 上下文 XML ![在这里插入图片描述](http://img.318050.com/uploads/20260616/17815955646a30fdac4b9b0582344030.webp)
### 前言 `llms-txt` 的核心价值一句话就能说清楚:**将 Markdown 格式的项目描述,转化为 LLM 可以直接使用的结构化上下文**。 它主要完成三件事: - 解析 `llms.txt` 的区块结构 - 提取标题、摘要、文档链接、示例链接等信息 - 输出一个整洁的 XML 文档,直接喂给 Claude、GPT 等模型作为背景知识 接下来完整介绍:CLI 如何使用、Python API 如何调用、核心解析原理(附 20 行实现),以及适合在哪些场景落地。
### 一、什么是 llms.txt 简单来说,它是一种用 Markdown 描述项目的方式——把文档、示例、知识链接按照固定结构组织起来。 下面是一个典型示例: ```ja vascript # FastHTML > FastHTML is a python library which... When writing FastHTML apps remember to: - Thing to remember ## Docs - [Surreal](https://host/README.md): Tiny jQuery alternative - [FastHTML quick start](https://host/quickstart.html.md) ## Examples - [Todo app](https://host/adv_app.py) ## Optional - [Starlette docs](https://host/starlette-sml.md) ``` 核心区块只有四个: | 区块 | 含义 | |------|------| | Title | 项目名称 | | Summary | 项目简介(`>` 引用的文字) | | Info | 额外说明(标题和摘要之后、第一个 `##` 之前的内容) | | Sections | 文档、示例、可选等分类链接,每类下放一个列表 |
### 二、安装 llms-txt ```ja vascript pip install llms-txt ``` 安装完成后,命令行就会多出 `llms_txt2ctx` 命令。 ```ja vascript llms_txt2ctx ```
### 三、CLI 使用教程 查看帮助: ```ja vascript llms_txt2ctx -h ``` 将 `llms.txt` 转换为 XML 上下文(默认不包含 Optional 区块): ```ja vascript llms_txt2ctx llms.txt > llms.md ``` 如果需要包含 Optional 区块: ```ja vascript llms_txt2ctx llms.txt --optional True > llms.md ``` 生成的内容可以直接交给 Claude 或 GPT,无需额外处理。
### 四、Python API 使用 除了命令行,它还提供 Python 模块,适合在项目中实现自动化。 #### 导入模块 ```ja vascript from llms_txt import * from pathlib import Path ``` 读取 `llms.txt`: ```ja vascript samp = Path('llms-sample.txt').read_text() ```
#### 1️⃣ 解析 llms.txt ```ja vascript parsed = parse_llms_file(samp) ``` 解析后,得到的 `parsed` 是一个命名元组,包含四个字段: ```ja vascript list(parsed) # ['title', 'summary', 'info', 'sections'] ``` 查看标题和摘要: ```ja vascript parsed.title, parsed.summary # ('FastHTML', 'FastHTML is a python library...') ``` 查看所有 section 名称: ```ja vascript list(parsed.sections) # ['Docs', 'Examples', 'Optional'] ``` 查看某条链接的具体内容: ```ja vascript parsed.sections.Optional[0] # {"desc": "A subset of the Starlette documentation useful...", # "title": "Starlette full documentation", # "url": "https://..."} ```
#### 2️⃣ 生成 LLM XML 上下文 最关键的一步——把解析结果转成 XML 文档: ```ja vascript ctx = create_ctx(samp) print(ctx[:300]) ``` 输出的内容类似: ```ja vascript Remember: - Use serve() for running uvicorn... ``` 这一步就是 CLI 背后实际执行的逻辑。
### 五、核心实现原理(重点) 官方给出了一个**无依赖、20 行的解析器**,非常值得学习。 #### 完整解析器 ```ja vascript from pathlib import Path import re, itertools def chunked(it, chunk_sz): it = iter(it) return iter(lambda: list(itertools.islice(it, chunk_sz)), []) def parse_llms_txt(txt): "Parse llms.txt file contents in `txt` to a `dict`" def _p(links): link_pat = r'- \[(?P[^\]]+)\]\((?P<url>[^)]+)\)(?::\s*(?P<desc>.*))?' return [re.search(link_pat, l).groupdict() for l in re.split(r'\n', links.strip()) if l.strip()] start, *rest = re.split(r'^##\s*(.*?$)', txt, flags=re.MULTILINE) sects = {k: _p(v) for k,v in dict(chunked(rest, 2)).items()} pat = r'^#\s*(?P<title>.+?$)\s*(?:^>\s*(?P<summary>.+?$)\s*$)?\s*(?P<info>.*)' d = re.search(pat, start.strip(), (re.MULTILINE|re.DOTALL)).groupdict() d['sections'] = sects return d ``` ##### 关键技术点 | 技术 | 用途 | |------|------| | 正则分块解析 | 按 `##` 切分 Markdown 区块 | | `groupdict()` | 直接生成结构化字典 | | `itertools.islice` | 两两分组 section 名和链接列表 | | 无第三方依赖 | 轻量级,可嵌入任何 Python 项目 | 这是一个非常典型的**结构化文本解析器**——用正则拆结构,用迭代器分块,最后用命名分组提取字段。整段代码没有外部依赖,复制出去即可直接使用。 <hr/> ### 六、适用场景 这个工具在以下几个场景中尤其顺手: #### AI Agent 项目 自动将项目文档整理成 Claude / GPT 可理解的上下文,省去手工拼接 Prompt 的麻烦。 #### RAG 系统 把知识库统一转为 XML 格式,方便批量更新和索引。 #### 开源项目 为项目提供一个“AI Readme”,告诉模型从哪读文档、看哪些示例,大幅提升代码理解效率。 <hr/> ### 七、总结 `llms-txt` 堪称 **LLM 时代的 README 生成器**。它的核心价值: - 把 Markdown 文档 → LLM 可读的 XML - 提供 CLI 和 Python API 两种使用方式 - 可嵌入 AI Agent、RAG、自动文档系统 - 核心实现极为轻量(20 行即可实现) 如果你的工作涉及 AI 相关项目,这个工具值得加入你的工具链。 </div> <span class="index3_article_dsource">来源:https://cloud.tencent.com.cn/developer/article/2690162</span> <div class="index3_article_class" style="display:none;"> <a href="">苹果</a> </div> <div class="index3_article_other"> <div> <span>上一篇:</span> <a href="https://www.youleyou.com/wenzhang/3039512.html" title="Trae AI编程模型选择指南与实战教程">Trae AI编程模型选择指南与实战教程</a> </div> <div> <span>下一篇:</span> <a href="https://www.youleyou.com/wenzhang/3039514.html" title="TensorFlow模型部署全流程完整解析">TensorFlow模型部署全流程完整解析</a> </div> </div> <div class="index3_article_Disclaimers"> <img src="/style/style2026/images/index3_article_Disclaimers.png" alt="" /> <p> 游乐网为非赢利性网站,所展示的游戏/软件/文章内容均来自于互联网或第三方用户上传分享,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系youleyoucom@outlook.com。 </p> </div> <div class="index3_article_push1"> <div class="index3_title"> <div class="index3_title1"> <img src="/style/style2026/images/index3_article1R_title1.png" alt="" /> <span>同类文章</span> </div> <a href="/wzlist/aitutorials" class="index3title_more"> 更多 <div class="icon_f"> <svg class="icon" aria-hidden="true"> <use xlink:href="#icon-xiangyou1"></use> </svg> <svg class="icon iconhover" aria-hidden="true"> <use xlink:href="#icon-xiangyou1-copy1"></use> </svg> </div> </a> </div> <div class="index3_article_push1M"> <div class="index3_article1Ls"> <a href="https://www.youleyou.com/wenzhang/3174072.html" title="LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南"> <img onerror="this.onerror=''; this.src='/style/style2022/images/moren/355_225.png'" src="https://static.youleyou.com//uploadfile/2026/0719/52d6be7447bb6fd6907834f024eec0d0.webp" alt="LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南" /> </a> <div> <a href="https://www.youleyou.com/wenzhang/3174072.html" title="LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南"><h2>LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南</h2></a> <p>围绕LangChain本地部署与NVIDIACUDA环境配置,梳理硬件确认、驱动安装、Python环境、深度学习框架验证、模型选择和常见故障处理,帮助开发者搭建稳定高效的AI应用运行环境。</p> <div class="index3_article1Ls_info"> <span>时间:2026-07-19 06:10</span> <div style="display:none;"> <a href="#">苹果</a> </div> </div> </div> </div> <div class="index3_article1Ls"> <a href="https://www.youleyou.com/wenzhang/3174067.html" title="免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总"> <img onerror="this.onerror=''; this.src='/style/style2022/images/moren/355_225.png'" src="https://static.youleyou.com//uploadfile/2026/0719/1cd5b0ebe3056379bcb933796c5469b5.webp" alt="免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总" /> </a> <div> <a href="https://www.youleyou.com/wenzhang/3174067.html" title="免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总"><h2>免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总</h2></a> <p>FastGPT免费自部署适合个人测试和小团队试用,迁移数据目录前需确认组件路径、完整备份、停服复制、校验权限,并准备回滚方案,避免因卷挂载错误导致知识库、账号或配置丢失。</p> <div class="index3_article1Ls_info"> <span>时间:2026-07-19 06:09</span> <div style="display:none;"> <a href="#">苹果</a> </div> </div> </div> </div> <div class="index3_article1Ls"> <a href="https://www.youleyou.com/wenzhang/3174066.html" title="Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)"> <img onerror="this.onerror=''; this.src='/style/style2022/images/moren/355_225.png'" src="https://static.youleyou.com//uploadfile/2026/0719/194c76bfff2b7bd3f4345cdc0dc31c73.webp" alt="Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)" /> </a> <div> <a href="https://www.youleyou.com/wenzhang/3174066.html" title="Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)"><h2>Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)</h2></a> <p>Dify可通过云端或本地部署使用,注册登录前需确认浏览器、服务器、Docker与模型接口条件,并完成账号、团队、密钥、知识库权限等配置,注意数据安全与版本兼容。</p> <div class="index3_article1Ls_info"> <span>时间:2026-07-19 06:09</span> <div style="display:none;"> <a href="#">苹果</a> </div> </div> </div> </div> <div class="index3_article1Ls"> <a href="https://www.youleyou.com/wenzhang/3174065.html" title="Open WebUI安装配置全攻略及多用户权限设置"> <img onerror="this.onerror=''; this.src='/style/style2022/images/moren/355_225.png'" src="https://static.youleyou.com//uploadfile/2026/0719/930d060bef2d6cd3ca033bdf8b616280.webp" alt="Open WebUI安装配置全攻略及多用户权限设置" /> </a> <div> <a href="https://www.youleyou.com/wenzhang/3174065.html" title="Open WebUI安装配置全攻略及多用户权限设置"><h2>Open WebUI安装配置全攻略及多用户权限设置</h2></a> <p>OpenWebUI适合为本地大模型提供类聊天产品界面,可对接Ollama与兼容接口。部署重点在运行环境、模型连接、账号注册、角色分配、模型可见范围和外部访问安全控制。</p> <div class="index3_article1Ls_info"> <span>时间:2026-07-19 06:08</span> <div style="display:none;"> <a href="#">苹果</a> </div> </div> </div> </div> <div class="index3_article1Ls"> <a href="https://www.youleyou.com/wenzhang/3174064.html" title="LocalAI安装环境配置与中文汉化教程 快速上手检查清单"> <img onerror="this.onerror=''; this.src='/style/style2022/images/moren/355_225.png'" src="https://static.youleyou.com//uploadfile/2026/0719/1f597b9ce6144eb976d643cdd07d612f.webp" alt="LocalAI安装环境配置与中文汉化教程 快速上手检查清单" /> </a> <div> <a href="https://www.youleyou.com/wenzhang/3174064.html" title="LocalAI安装环境配置与中文汉化教程 快速上手检查清单"><h2>LocalAI安装环境配置与中文汉化教程 快速上手检查清单</h2></a> <p>LocalAI适合在本机或内网部署类OpenAI接口服务,安装前需确认系统、Docker、模型格式与硬件资源。配置重点包括模型目录、服务端口、中文提示词、接口测试和权限控制。</p> <div class="index3_article1Ls_info"> <span>时间:2026-07-19 06:08</span> <div style="display:none;"> <a href="#">苹果</a> </div> </div> </div> </div> </div> </div> <div class="index3_article_push2"> <div class="index3_title"> <div class="index3_title1"> <img src="/style/style2026/images/index3_article1R_title1.png" alt="" /> <span>热门专题</span> </div> <a href="/zt.html" class="index3title_more"> 更多 <div class="icon_f"> <svg class="icon" aria-hidden="true"> <use xlink:href="#icon-xiangyou1"></use> </svg> <svg class="icon iconhover" aria-hidden="true"> <use xlink:href="#icon-xiangyou1-copy1"></use> </svg> </div> </a> </div> <div class="index3_article_push2M"> <div class="index3_article_push2Ms"> <a href="/zt/11618" title="刀塔传奇破解版无限钻石下载大全" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2021/0428/20210428011753491.webp" alt="刀塔传奇破解版无限钻石下载大全" /> </a> <a href="/zt/11618" title="刀塔传奇破解版无限钻石下载大全" >刀塔传奇破解版无限钻石下载大全</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/7752" title="洛克王国正式正版手游下载安装大全" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2021/0813/20210813035629318.webp" alt="洛克王国正式正版手游下载安装大全" /> </a> <a href="/zt/7752" title="洛克王国正式正版手游下载安装大全" >洛克王国正式正版手游下载安装大全</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/124687" title="思美人手游下载专区" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2019/0911/20190911043836551.jpg" alt="思美人手游下载专区" /> </a> <a href="/zt/124687" title="思美人手游下载专区" >思美人手游下载专区</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/138087" title="好玩的阿拉德之怒游戏下载合集" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2019/0308/20190308044923889.jpg" alt="好玩的阿拉德之怒游戏下载合集" /> </a> <a href="/zt/138087" title="好玩的阿拉德之怒游戏下载合集" >好玩的阿拉德之怒游戏下载合集</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/42155" title="不思议迷宫手游下载合集" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2019/1008/20191008083221457.jpg" alt="不思议迷宫手游下载合集" /> </a> <a href="/zt/42155" title="不思议迷宫手游下载合集" >不思议迷宫手游下载合集</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/1675412" title="百宝袋汉化组游戏最新合集" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2021/0201/20210201032247458.webp" alt="百宝袋汉化组游戏最新合集" /> </a> <a href="/zt/1675412" title="百宝袋汉化组游戏最新合集" >百宝袋汉化组游戏最新合集</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/1675543" title="jsk游戏合集30款游戏大全" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2021/0201/20210201032248745.webp" alt="jsk游戏合集30款游戏大全" /> </a> <a href="/zt/1675543" title="jsk游戏合集30款游戏大全" >jsk游戏合集30款游戏大全</a> </div> <div class="index3_article_push2Ms"> <a href="/zt/115942" title="宾果消消消原版下载大全" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2021/0428/20210428095718406.webp" alt="宾果消消消原版下载大全" /> </a> <a href="/zt/115942" title="宾果消消消原版下载大全" >宾果消消消原版下载大全</a> </div> </div> </div> </div> <div class="index3_article1R"> <div class="index3_articleR1"> <div class="layui-tab layui-tab-brief"> <ul class="layui-tab-title"> <li class="layui-this">热门数据榜</li> </ul> <div class="layui-tab-content"> <div class="layui-tab-item layui-show"> <div class="index3_articleR1M"> <a href="https://www.youleyou.com/wenzhang/3175413.html" title="心动小镇寻鲸季金色服饰泡泡位置大全"> <div> <img src="/style/style2026/images/index3main8_no11.png" alt="" /> <span>1</span> </div> <span>心动小镇寻鲸季金色服饰泡泡位置大全</span> </a> <a href="https://www.youleyou.com/wenzhang/3175412.html" title="最新龙之谷启程官方公测时间及预约入口"> <div> <img src="/style/style2026/images/index3main8_no22.png" alt="" /> <span>2</span> </div> <span>最新龙之谷启程官方公测时间及预约入口</span> </a> <a href="https://www.youleyou.com/wenzhang/3175411.html" title="燕云十六声暗自用功成就完成方法全攻略"> <div> <img src="/style/style2026/images/index3main8_no33.png" alt="" /> <span>3</span> </div> <span>燕云十六声暗自用功成就完成方法全攻略</span> </a> <a href="https://www.youleyou.com/wenzhang/3175410.html" title="心动小镇寻鲸季限定贝壳泡泡位置一览"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>4</span> </div> <span>心动小镇寻鲸季限定贝壳泡泡位置一览</span> </a> <a href="https://www.youleyou.com/wenzhang/3175409.html" title="粒粒的小人国泳池建造步骤与实用技巧"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>5</span> </div> <span>粒粒的小人国泳池建造步骤与实用技巧</span> </a> <a href="https://www.youleyou.com/wenzhang/3175408.html" title="崩坏因缘精灵新增角色全面解析"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>6</span> </div> <span>崩坏因缘精灵新增角色全面解析</span> </a> <a href="https://www.youleyou.com/wenzhang/3175407.html" title="心动小镇寻鲸季野海菜位置攻略"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>7</span> </div> <span>心动小镇寻鲸季野海菜位置攻略</span> </a> <a href="https://www.youleyou.com/wenzhang/3175406.html" title="轮回之兽正式测试上线时间预测"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>8</span> </div> <span>轮回之兽正式测试上线时间预测</span> </a> <a href="https://www.youleyou.com/wenzhang/3175405.html" title="城主别慌张晶晶技能强度与实战表现分析"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>9</span> </div> <span>城主别慌张晶晶技能强度与实战表现分析</span> </a> <a href="https://www.youleyou.com/wenzhang/3175404.html" title="心动小镇寻鲸季限定海鸟位置与鸟类一览"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>10</span> </div> <span>心动小镇寻鲸季限定海鸟位置与鸟类一览</span> </a> </div> </div> <div class="layui-tab-item"> <div class="index3_articleR1M"> <a href="https://www.youleyou.com/wenzhang/3175413.html" title="心动小镇寻鲸季金色服饰泡泡位置大全"> <div> <img src="/style/style2026/images/index3main8_no11.png" alt="" /> <span>1</span> </div> <span>心动小镇寻鲸季金色服饰泡泡位置大全</span> </a> <a href="https://www.youleyou.com/wenzhang/3175412.html" title="最新龙之谷启程官方公测时间及预约入口"> <div> <img src="/style/style2026/images/index3main8_no22.png" alt="" /> <span>2</span> </div> <span>最新龙之谷启程官方公测时间及预约入口</span> </a> <a href="https://www.youleyou.com/wenzhang/3175411.html" title="燕云十六声暗自用功成就完成方法全攻略"> <div> <img src="/style/style2026/images/index3main8_no33.png" alt="" /> <span>3</span> </div> <span>燕云十六声暗自用功成就完成方法全攻略</span> </a> <a href="https://www.youleyou.com/wenzhang/3175410.html" title="心动小镇寻鲸季限定贝壳泡泡位置一览"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>4</span> </div> <span>心动小镇寻鲸季限定贝壳泡泡位置一览</span> </a> <a href="https://www.youleyou.com/wenzhang/3175409.html" title="粒粒的小人国泳池建造步骤与实用技巧"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>5</span> </div> <span>粒粒的小人国泳池建造步骤与实用技巧</span> </a> <a href="https://www.youleyou.com/wenzhang/3175408.html" title="崩坏因缘精灵新增角色全面解析"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>6</span> </div> <span>崩坏因缘精灵新增角色全面解析</span> </a> <a href="https://www.youleyou.com/wenzhang/3175407.html" title="心动小镇寻鲸季野海菜位置攻略"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>7</span> </div> <span>心动小镇寻鲸季野海菜位置攻略</span> </a> <a href="https://www.youleyou.com/wenzhang/3175406.html" title="轮回之兽正式测试上线时间预测"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>8</span> </div> <span>轮回之兽正式测试上线时间预测</span> </a> <a href="https://www.youleyou.com/wenzhang/3175405.html" title="城主别慌张晶晶技能强度与实战表现分析"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>9</span> </div> <span>城主别慌张晶晶技能强度与实战表现分析</span> </a> <a href="https://www.youleyou.com/wenzhang/3175404.html" title="心动小镇寻鲸季限定海鸟位置与鸟类一览"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>10</span> </div> <span>心动小镇寻鲸季限定海鸟位置与鸟类一览</span> </a> </div> </div> <div class="layui-tab-item"> <div class="index3_articleR1M"> <a href="https://www.youleyou.com/wenzhang/3175413.html" title="心动小镇寻鲸季金色服饰泡泡位置大全"> <div> <img src="/style/style2026/images/index3main8_no11.png" alt="" /> <span>1</span> </div> <span>心动小镇寻鲸季金色服饰泡泡位置大全</span> </a> <a href="https://www.youleyou.com/wenzhang/3175412.html" title="最新龙之谷启程官方公测时间及预约入口"> <div> <img src="/style/style2026/images/index3main8_no22.png" alt="" /> <span>2</span> </div> <span>最新龙之谷启程官方公测时间及预约入口</span> </a> <a href="https://www.youleyou.com/wenzhang/3175411.html" title="燕云十六声暗自用功成就完成方法全攻略"> <div> <img src="/style/style2026/images/index3main8_no33.png" alt="" /> <span>3</span> </div> <span>燕云十六声暗自用功成就完成方法全攻略</span> </a> <a href="https://www.youleyou.com/wenzhang/3175410.html" title="心动小镇寻鲸季限定贝壳泡泡位置一览"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>4</span> </div> <span>心动小镇寻鲸季限定贝壳泡泡位置一览</span> </a> <a href="https://www.youleyou.com/wenzhang/3175409.html" title="粒粒的小人国泳池建造步骤与实用技巧"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>5</span> </div> <span>粒粒的小人国泳池建造步骤与实用技巧</span> </a> <a href="https://www.youleyou.com/wenzhang/3175408.html" title="崩坏因缘精灵新增角色全面解析"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>6</span> </div> <span>崩坏因缘精灵新增角色全面解析</span> </a> <a href="https://www.youleyou.com/wenzhang/3175407.html" title="心动小镇寻鲸季野海菜位置攻略"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>7</span> </div> <span>心动小镇寻鲸季野海菜位置攻略</span> </a> <a href="https://www.youleyou.com/wenzhang/3175406.html" title="轮回之兽正式测试上线时间预测"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>8</span> </div> <span>轮回之兽正式测试上线时间预测</span> </a> <a href="https://www.youleyou.com/wenzhang/3175405.html" title="城主别慌张晶晶技能强度与实战表现分析"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>9</span> </div> <span>城主别慌张晶晶技能强度与实战表现分析</span> </a> <a href="https://www.youleyou.com/wenzhang/3175404.html" title="心动小镇寻鲸季限定海鸟位置与鸟类一览"> <div> <img src="/style/style2026/images/index3main8_no44.png" alt="" /> <span>10</span> </div> <span>心动小镇寻鲸季限定海鸟位置与鸟类一览</span> </a> </div> </div> </div> </div> </div> <div class="index3_article1R1"> <div class="index3_title"> <div class="index3_title1"> <img src="/style/style2026/images/index3_article1R_title1.png" alt="相关攻略" /> <span>相关攻略</span> </div> <a href="/wzlist/aitutorials" class="index3title_more"> 更多 <div class="icon_f"> <svg class="icon" aria-hidden="true"> <use xlink:href="#icon-xiangyou1"></use> </svg> <svg class="icon iconhover" aria-hidden="true"> <use xlink:href="#icon-xiangyou1-copy1"></use> </svg> </div> </a> </div> <div class="index3_article1R1M"> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南" /> <span>2026-07-19 06:10</span> </div> <a href="https://www.youleyou.com/wenzhang/3174072.html" title="LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南">LangChain高效部署实战:NVIDIA CUDA环境配置与模型选择指南</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总" /> <span>2026-07-19 06:09</span> </div> <a href="https://www.youleyou.com/wenzhang/3174067.html" title="免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总">免费方案FastGPT安装教程:数据目录迁移全流程与常见问题汇总</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)" /> <span>2026-07-19 06:09</span> </div> <a href="https://www.youleyou.com/wenzhang/3174066.html" title="Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)">Dify注册登录与账号配置教程(国内可用,附下载地址与环境要求)</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="Open WebUI安装配置全攻略及多用户权限设置" /> <span>2026-07-19 06:08</span> </div> <a href="https://www.youleyou.com/wenzhang/3174065.html" title="Open WebUI安装配置全攻略及多用户权限设置">Open WebUI安装配置全攻略及多用户权限设置</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="LocalAI安装环境配置与中文汉化教程 快速上手检查清单" /> <span>2026-07-19 06:08</span> </div> <a href="https://www.youleyou.com/wenzhang/3174064.html" title="LocalAI安装环境配置与中文汉化教程 快速上手检查清单">LocalAI安装环境配置与中文汉化教程 快速上手检查清单</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="GPT4All Apple Silicon安装运行与后台管理教程" /> <span>2026-07-19 06:08</span> </div> <a href="https://www.youleyou.com/wenzhang/3174063.html" title="GPT4All Apple Silicon安装运行与后台管理教程">GPT4All Apple Silicon安装运行与后台管理教程</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="本地AI助手Jan NAS私有化安装一步步教程" /> <span>2026-07-19 06:08</span> </div> <a href="https://www.youleyou.com/wenzhang/3174062.html" title="本地AI助手Jan NAS私有化安装一步步教程">本地AI助手Jan NAS私有化安装一步步教程</a> </div> <div class="index3_article1R1Ms"> <div> <img src="/style/style2026/images/index3_article1R1Ms.png" alt="LM Studio安装失败解决方法与自动启动配置教程及插件推荐" /> <span>2026-07-19 06:08</span> </div> <a href="https://www.youleyou.com/wenzhang/3174061.html" title="LM Studio安装失败解决方法与自动启动配置教程及插件推荐">LM Studio安装失败解决方法与自动启动配置教程及插件推荐</a> </div> </div> </div> <div class="index3_articleR2"> <div class="index3_title"> <div class="index3_title1"> <img src="/style/style2026/images/index3_article1R_title1.png" alt="" /> <span>热门教程</span> </div> <a href="/wzlist/" class="index3title_more"> 更多 <div class="icon_f"> <svg class="icon" aria-hidden="true"> <use xlink:href="#icon-xiangyou1"></use> </svg> <svg class="icon iconhover" aria-hidden="true"> <use xlink:href="#icon-xiangyou1-copy1"></use> </svg> </div> </a> </div> <div class="index3_articleR2M"> <div class="layui-tab layui-tab-brief"> <ul class="layui-tab-title"> <li class="layui-this">游戏攻略</li> <li>安卓教程</li> <li>苹果教程</li> <li>电脑教程</li> </ul> <div class="layui-tab-content"> <div class="layui-tab-item layui-show"> <div class="index3_articleR2Ms index3_articleR2Ms_hot"> <div> <a href="https://www.youleyou.com/wenzhang/3175425.html" title="今古群侠传锦毛鼠入队攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/d4350a048d1b1c12893bb30b6b52e473.webp" alt="今古群侠传锦毛鼠入队攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175425.html" title="今古群侠传锦毛鼠入队攻略" >今古群侠传锦毛鼠入队攻略</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3175423.html" title="归零巡礼亡谍镇魂曲全剧情流程攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/b4f9777b1586b7a4cf3445d95dcd1758.webp" alt="归零巡礼亡谍镇魂曲全剧情流程攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175423.html" title="归零巡礼亡谍镇魂曲全剧情流程攻略" >归零巡礼亡谍镇魂曲全剧情流程攻略</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3175422.html" title="地牢猎手6主要副本玩法与通关攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/6d2c11f8a92d6e98b9864e4540fa26e3.webp" alt="地牢猎手6主要副本玩法与通关攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175422.html" title="地牢猎手6主要副本玩法与通关攻略" >地牢猎手6主要副本玩法与通关攻略</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3175421.html" title="镭明闪击零氪高效刷模组攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/e87bdfb0952738f3eebbe2d6aa073654.webp" alt="镭明闪击零氪高效刷模组攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175421.html" title="镭明闪击零氪高效刷模组攻略" >镭明闪击零氪高效刷模组攻略</a> <span>发布于 2026-07-19</span> </div> </div> </div> </div> <div class="layui-tab-item"> <div class="index3_articleR2Ms index3_articleR2Ms_hot"> <div> <a href="https://www.youleyou.com/wenzhang/3175631.html" title="原神松珀香收集攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/6bc46e5437a97ab3fd7da54bd2241928.webp" alt="原神松珀香收集攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175631.html" title="原神松珀香收集攻略" >原神松珀香收集攻略</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3175630.html" title="饥荒游戏炸鱼条独特制作方法" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/a3a78571b03a1f54533eacf4bf00d004.webp" alt="饥荒游戏炸鱼条独特制作方法" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175630.html" title="饥荒游戏炸鱼条独特制作方法" >饥荒游戏炸鱼条独特制作方法</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3175629.html" title="三国志王道天下弓兵阵容搭配攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/8d7f8e7954c8435453cb7cdbd2439fa2.webp" alt="三国志王道天下弓兵阵容搭配攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175629.html" title="三国志王道天下弓兵阵容搭配攻略" >三国志王道天下弓兵阵容搭配攻略</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3175628.html" title="饥荒冒险模式全面解析玩法技巧通关攻略" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/128bcdf3168f04554c3dc13cbc3cbc14.webp" alt="饥荒冒险模式全面解析玩法技巧通关攻略" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3175628.html" title="饥荒冒险模式全面解析玩法技巧通关攻略" >饥荒冒险模式全面解析玩法技巧通关攻略</a> <span>发布于 2026-07-19</span> </div> </div> </div> </div> <div class="layui-tab-item"> <div class="index3_articleR2Ms index3_articleR2Ms_hot"> <div> <a href="https://www.youleyou.com/wenzhang/3169459.html" title="旧显卡驱动漏洞多年未修:整机厂认证机制是主因" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0718/54eed5013e7722e335f924565bdec26c.webp" alt="旧显卡驱动漏洞多年未修:整机厂认证机制是主因" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3169459.html" title="旧显卡驱动漏洞多年未修:整机厂认证机制是主因" >旧显卡驱动漏洞多年未修:整机厂认证机制是主因</a> <span>发布于 2026-07-18</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3168573.html" title="BIOS设置各参数中英文对照表" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0718/707cb01e30516b54bf992e6f52ee765c.webp" alt="BIOS设置各参数中英文对照表" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3168573.html" title="BIOS设置各参数中英文对照表" >BIOS设置各参数中英文对照表</a> <span>发布于 2026-07-18</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3168572.html" title="BIOS自动开机设置及自动登录实现方法" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0718/88a9ddbf56f556dee4bf120db2ae50d3.webp" alt="BIOS自动开机设置及自动登录实现方法" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3168572.html" title="BIOS自动开机设置及自动登录实现方法" >BIOS自动开机设置及自动登录实现方法</a> <span>发布于 2026-07-18</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3168571.html" title="快速解决BIOS开机英文显示时间过长的方法" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0718/d2cf88623b57c9c06237a9f30dc28833.webp" alt="快速解决BIOS开机英文显示时间过长的方法" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3168571.html" title="快速解决BIOS开机英文显示时间过长的方法" >快速解决BIOS开机英文显示时间过长的方法</a> <span>发布于 2026-07-18</span> </div> </div> </div> </div> <div class="layui-tab-item"> <div class="index3_articleR2Ms index3_articleR2Ms_hot"> <div> <a href="https://www.youleyou.com/wenzhang/3174197.html" title="三星Z Flip5外屏通知提醒设置方法" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/0b30796704845ce9bd0237eef7a44842.webp" alt="三星Z Flip5外屏通知提醒设置方法" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3174197.html" title="三星Z Flip5外屏通知提醒设置方法" >三星Z Flip5外屏通知提醒设置方法</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3174196.html" title="AOC显示器设置菜单打不开的解决方法" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/cafbeaed490fcf283096abbb3e662e0b.webp" alt="AOC显示器设置菜单打不开的解决方法" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3174196.html" title="AOC显示器设置菜单打不开的解决方法" >AOC显示器设置菜单打不开的解决方法</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3174195.html" title="PoE交换机供电方式及原理详解" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/b1c9439471d1393cc12eeb26a2e48e8e.webp" alt="PoE交换机供电方式及原理详解" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3174195.html" title="PoE交换机供电方式及原理详解" >PoE交换机供电方式及原理详解</a> <span>发布于 2026-07-19</span> </div> </div> <div> <a href="https://www.youleyou.com/wenzhang/3174194.html" title="帅丰集成灶蒸烤功能使用教程" > <img onerror="this.onerror=''; this.src='/style/style2025/images/null.png'" src="https://static.youleyou.com//uploadfile/2026/0719/c883b9c9bbd9a8e89aed473615dc09e6.webp" alt="帅丰集成灶蒸烤功能使用教程" /> </a> <div class="index3_articleR2M_info"> <a href="https://www.youleyou.com/wenzhang/3174194.html" title="帅丰集成灶蒸烤功能使用教程" >帅丰集成灶蒸烤功能使用教程</a> <span>发布于 2026-07-19</span> </div> </div> </div> </div> </div> </div> </div> </div> <div class="index3_articleR3"> <div class="index3_title"> <div class="index3_title1"> <img src="/style/style2026/images/index3_article1R_title1.png" alt="" /> <span>热门话题</span> </div> <a href="/wzzt.html" class="index3title_more"> 更多 <div class="icon_f"> <svg class="icon" aria-hidden="true"> <use xlink:href="#icon-xiangyou1"></use> </svg> <svg class="icon iconhover" aria-hidden="true"> <use xlink:href="#icon-xiangyou1-copy1"></use> </svg> </div> </a> </div> <div class="index3main6M2"> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="AI会议纪要工具推荐_AI会议转写教程_自动总结会议记录指南" /> <a href="/zt/wz_6507548/" title="AI会议纪要工具推荐_AI会议转写教程_自动总结会议记录指南">AI会议纪要工具推荐_AI会议转写教程_自动总结会议记录指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="AI浏览器哪个好用_AI浏览器功能对比_智能上网助手指南" /> <a href="/zt/wz_6507547/" title="AI浏览器哪个好用_AI浏览器功能对比_智能上网助手指南">AI浏览器哪个好用_AI浏览器功能对比_智能上网助手指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="Agentic Coding是什么_AI编程智能体教程_自动开发工作流指南" /> <a href="/zt/wz_6507546/" title="Agentic Coding是什么_AI编程智能体教程_自动开发工作流指南">Agentic Coding是什么_AI编程智能体教程_自动开发工作流指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="Vibe Coding是什么_Vibe Coding工具推荐_AI编程实战指南" /> <a href="/zt/wz_6507545/" title="Vibe Coding是什么_Vibe Coding工具推荐_AI编程实战指南">Vibe Coding是什么_Vibe Coding工具推荐_AI编程实战指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="具身智能是什么_机器人AI应用场景_具身大模型趋势指南" /> <a href="/zt/wz_6507544/" title="具身智能是什么_机器人AI应用场景_具身大模型趋势指南">具身智能是什么_机器人AI应用场景_具身大模型趋势指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="GEO优化是什么_生成式引擎优化教程_AI搜索排名指南" /> <a href="/zt/wz_6507543/" title="GEO优化是什么_生成式引擎优化教程_AI搜索排名指南">GEO优化是什么_生成式引擎优化教程_AI搜索排名指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="AI网络安全应用场景_AI威胁检测教程_安全智能体指南" /> <a href="/zt/wz_6507542/" title="AI网络安全应用场景_AI威胁检测教程_安全智能体指南">AI网络安全应用场景_AI威胁检测教程_安全智能体指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="AI影视制作教程_AI视频剪辑与生成_影视行业AI工具指南" /> <a href="/zt/wz_6507540/" title="AI影视制作教程_AI视频剪辑与生成_影视行业AI工具指南">AI影视制作教程_AI视频剪辑与生成_影视行业AI工具指南</a> </div> <div class="index3main3Mss"> <img src="/style/style2026/images/index3main3Ms.png" alt="AI游戏应用场景_AI游戏开发工具_智能NPC与关卡生成指南" /> <a href="/zt/wz_6507541/" title="AI游戏应用场景_AI游戏开发工具_智能NPC与关卡生成指南">AI游戏应用场景_AI游戏开发工具_智能NPC与关卡生成指南</a> </div> </div> </div> </div> </div> </div> </main> <footer> <div class="index3footer"> <div class="index3footer1"> <a href="/wenzhang/2756709.html">关于我们</a> <span></span> <a href="/wenzhang/2756708.html">联系我们</a> <span></span> <a href="/wenzhang/2756708.html">加入我们</a> <span></span> <a href="https://m.youleyou.com/">WAP版</a> <span></span> <a href="/new">网站地图</a> </div> <div class="index3footer2"> <span>声明:游乐网为非赢利性网站 不接受任何赞助和广告</span> <span>Copyright 2025-2026 www.youleyou.com All Rights Reserved.</span> </div> <div class="index3footer3"> <span>湘ICP备2022002617号-10</span> <div> <img src="https://www.youleyou.com/style/style2025/new/images/gongan.png" alt="" /> <span>湘公网安备 43070202000716号</span> </div> <a href="/wenzhang/2756708.html">违规内容举报</a> <a href="/wenzhang/2756708.html">网络侵权举报</a> <a href="/wenzhang/2756708.html">游戏侵权举报</a> </div> <span>联系方式:youleyoucom@outlook.com</span> </div> </footer> <script src="/style/style2026/js/jquery-1.8.3.min.js"></script> <script src="/style/style2026/js/common.js"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?c32ac38c19e064eb1c81c2a84384de83"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>