> For the complete documentation index, see [llms.txt](https://developers.oxylabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.oxylabs.io/products/cn/ai-studio/faq.md).

# 常见问题

关于 Oxylabs AI Studio 应用的常见问题。

请在下面按应用浏览常见问题：

<details>

<summary><strong>AI-Scraper</strong></summary>

### AI-Scraper 与普通爬虫有何不同？

AI-Scraper 不依赖 CSS/XPath 选择器或自定义解析逻辑。相反，它使用自然语言提示和 AI 驱动的提取，因此更能适应布局变化，也更容易设置。

### 我可以抓取任何网页吗？

可以，只要页面是公开可访问的，你就可以抓取任何公开网页。AI-Scraper 也支持对动态页面进行 JavaScript 渲染。默认情况下，不支持私有或登录保护内容。

### AI-Scraper 必须提供 schema 吗？

不，schema 不是必须的，但如果你想要结构化 JSON 输出，就需要它。如果你不提供，AI-Scraper 可以根据你的提示自动生成 schema。

### 如果页面结构发生变化会怎样？

与传统爬虫不同，AI-Scraper 对布局变化更有韧性，因为它会用 AI 解释内容。不过，重大变化可能需要你调整提示或 schema。

### AI-Scraper 免费吗？

AI-Scraper 可通过注册免费试用来免费体验，试用包含 1,000 积分。试用结束后， [月度套餐](https://aistudio.oxylabs.io/pricing) 起价仅为每月 12 美元，包含 3000 积分和 1 次请求/秒，更高等级的套餐提供更多积分和更高的请求速率。

</details>

<details>

<summary><strong>Browser Agent</strong></summary>

### Browser Agent 与 Puppeteer 或 Selenium 有何不同？

传统工具依赖为每个操作编写选择器和脚本。AI 浏览器代理用自然语言指令取代这些，并增加自然浏览能力，让自动化更快、更容易，也更稳健。

### Browser Agent 可以登录网站或填写表单吗？

可以，你可以指示代理输入文本、提交表单或点击按钮。请记住，具有复杂机器人监测系统的网站可能需要高级配置，但登录后的数据不被视为公开内容。

### 我可以在任何网站上使用 Browser Agent 吗？

Browser Agent 适用于大多数公开网站，包括依赖 JavaScript 或交互式流程的网站。不过，你应始终确保你的使用场景符合目标网站的服务条款和适用法律。

### Browser Agent 免费吗？

Oxylabs AI Studio Browser Agent 可通过注册免费试用来免费体验，试用包含 1,000 积分。试用结束后， [月度套餐](https://aistudio.oxylabs.io/pricing) 起价仅为每月 12 美元，包含 3000 积分和 1 次请求/秒，更高等级的套餐提供更多积分和更高的请求速率。

</details>

<details>

<summary><strong>AI-Crawler</strong></summary>

### AI-Crawler 与传统网页爬虫有何不同？

与依赖静态选择器（CSS/XPath）和自定义脚本的传统爬虫不同，AI-Crawler 使用自然语言提示和 AI 辅助 URL 选择来动态识别并提取相关内容。它返回 Markdown 结果，也支持基于 schema 的解析以输出结构化 JSON，从而减少手动解析逻辑的需求。

### 我可以用 Oxylabs AI-Crawler 爬取哪些网站？

你可以爬取大多数可公开访问的网站。AI-Crawler 旨在处理静态页面和 JavaScript 渲染页面，并可配置地理定位。不过，请确保你的使用场景符合网站的服务条款和当地法律。

### AI-Crawler 免费吗？

Oxylabs AI Studio AI-Crawler 可通过注册一个 [免费试用](https://aistudio.oxylabs.io/register) ，其中包含 1,000 积分。试用结束后， [月度套餐](https://aistudio.oxylabs.io/pricing) 起价为每月 12 美元，包含 3,000 积分和 1 次请求/秒，更高等级的套餐提供更多积分和更高的请求速率。

### 我可以为 JSON 输出生成自己的 schema 吗？

可以，你可以提供自己使用 OpenAPI 格式的 schema，也可以让 AI-Crawler 根据自然语言提示自动生成一个。这样你的提取数据就能匹配应用所需的准确结构。

</details>

<details>

<summary><strong>AI-Search</strong></summary>

### 如果我只需要 URL 和标题，如何更快获得搜索结果？

如果你不需要提取完整页面内容，你可以使用 `instant_search` 方法（如 [示例](/products/cn/ai-studio/ai-search.md)）或在 `return_content=False` 的标准搜索方法中设置该参数。这会跳过深度爬取过程，并几乎立即返回你的搜索结果。

### 我可以获取来自特定国家或地区的搜索结果吗？

可以，你可以使用 `geo_location` 参数来本地化你的搜索结果。它支持 ISO 两字母国家代码（例如， `US`, `DE`）、完整国家规范名称，或特定地理坐标，让你准确看到该地区用户看到的内容。

### 为什么我无法从某些网站获取完整内容？

一些现代网站严重依赖 JavaScript 动态加载内容（如单页应用）。如果返回的内容片段为空或缺少数据，请尝试在 `render_javascript=True` 中进行设置。这会让搜索代理在提取文本前像普通浏览器一样完整渲染页面。

### 我一次最多可以检索多少个搜索结果？

你可以通过调整 limit 参数，每个查询最多检索 50 条搜索结果。如果不指定 limit，搜索代理默认返回 10 条结果。

</details>

<details>

<summary><strong>AI-Map</strong></summary>

### 什么是网站映射？

网站映射是发现并列出网站或域中所有相关 URL 的过程。AI-Map 使用 AI 理解你的请求、探索目标域，并返回结构化结果——例如所有博客文章、文档页面或产品分类——来自动完成这一过程。

### AI-Map 与 AI-Crawler 有何不同？

AI-Map 侧重于 **查找** 网站中的相关页面，而 AI-Crawler **提取** 这些页面中的结构化数据。简而言之，AI-Map 帮助你找到 *在何处* 收集数据，而 AI-Crawler 帮助你 *获取数据* 本身。

### AI-Map 可以在任何网站上工作吗？

AI-Map 搜索适用于大多数公开网站，包括使用 JavaScript 渲染内容的网站。不过，需要身份验证、存在付费墙或位于私有网络中的页面默认无法访问。

### AI-Map 免费吗？

Oxylabs AI Studio AI-Map 可通过注册免费试用来免费体验，试用包含 1,000 积分。试用结束后， [月度套餐](https://aistudio.oxylabs.io/pricing) 起价仅为每月 12 美元，包含 3,000 积分和 1 次请求/秒，更高级的套餐提供更多积分和更高的请求速率。

</details>

如果你有问题或需要支持，请通过以下方式联系我们： <support@oxylabs.io>，或通过实时聊天，可通过 [Oxylabs 仪表板](https://dashboard.oxylabs.io/en/) 或我们的 [网站](https://oxylabs.io)。对于企业相关咨询，请联系你的专属客户经理。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.oxylabs.io/products/cn/ai-studio/faq.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
