Parallel AI é uma plataforma avançada de busca na web e extração de conteúdo projetada para entregar resultados abrangentes e de alta qualidade para qualquer consulta. Com processamento inteligente e extração de dados em larga escala, o Parallel AI permite que usuários e agentes acessem, analisem e sintetizem informações da web com velocidade e precisão.
Com o Parallel AI, você pode:
- Pesquisar na web de forma inteligente: Recuperar informações relevantes e atualizadas de uma ampla variedade de fontes
- Extrair e resumir conteúdo: Obter trechos concisos e significativos de páginas e documentos
- Personalizar objetivos de busca: Adequar consultas a necessidades ou perguntas específicas para resultados direcionados
- Processar resultados em escala: Lidar com grandes volumes de resultados com opções avançadas de processamento
- Integrar com fluxos de trabalho: Usar o Parallel AI no Zoen para automatizar pesquisa, coleta de conteúdo e extração de conhecimento
- Controlar a granularidade da saída: Especificar o número de resultados e a quantidade de conteúdo por resultado
- Acesso seguro via API: Proteger buscas e dados com autenticação por API key
No Zoen, a integração Parallel AI capacita seus agentes a pesquisar na web e extrair conteúdo de forma programática. Isso habilita cenários poderosos de automação como pesquisa em tempo real, análise competitiva, monitoramento de conteúdo e criação de bases de conhecimento. Ao conectar Zoen e Parallel AI, você desbloqueia a capacidade dos agentes de reunir, processar e utilizar dados da web como parte dos seus fluxos automatizados.
Usage Instructions
Integrate Parallel AI into the workflow. Can search the web, extract information from URLs, and conduct deep research.
Actions
parallel_search
Search the web using Parallel AI. Provides comprehensive search results with intelligent processing and content extraction.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
objective | string | Yes | The search objective or question to answer |
search_queries | string | No | Comma-separated list of search queries to execute |
mode | string | No | Search mode: one-shot, agentic, or fast (default: one-shot) |
max_results | number | No | Maximum number of results to return (default: 10) |
max_chars_per_result | number | No | Maximum characters per result excerpt (minimum: 1000) |
include_domains | string | No | Comma-separated list of domains to restrict search results to |
exclude_domains | string | No | Comma-separated list of domains to exclude from search results |
apiKey | string | Yes | Parallel AI API Key |
Output
| Parameter | Type | Description |
|---|---|---|
search_id | string | Unique identifier for this search request |
results | array | Search results with excerpts from relevant pages |
↳ url | string | The URL of the search result |
↳ title | string | The title of the search result |
↳ publish_date | string | Publication date of the page (YYYY-MM-DD) |
↳ excerpts | array | LLM-optimized excerpts from the page |
parallel_extract
Extract targeted information from specific URLs using Parallel AI. Processes provided URLs to pull relevant content based on your objective.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
urls | string | Yes | Comma-separated list of URLs to extract information from |
objective | string | No | What information to extract from the provided URLs |
excerpts | boolean | No | Include relevant excerpts from the content (default: true) |
full_content | boolean | No | Include full page content as markdown (default: false) |
apiKey | string | Yes | Parallel AI API Key |
Output
| Parameter | Type | Description |
|---|---|---|
extract_id | string | Unique identifier for this extraction request |
results | array | Extracted information from the provided URLs |
↳ url | string | The source URL |
↳ title | string | The title of the page |
↳ publish_date | string | Publication date (YYYY-MM-DD) |
↳ excerpts | array | Relevant text excerpts in markdown |
↳ full_content | string | Full page content as markdown |
parallel_deep_research
Conduct comprehensive deep research across the web using Parallel AI. Synthesizes information from multiple sources with citations. Can take up to 45 minutes to complete.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
input | string | Yes | Research query or question (up to 15,000 characters) |
processor | string | No | Processing tier: pro, ultra, pro-fast, ultra-fast (default: pro) |
include_domains | string | No | Comma-separated list of domains to restrict research to (source policy) |
exclude_domains | string | No | Comma-separated list of domains to exclude from research (source policy) |
apiKey | string | Yes | Parallel AI API Key |
Output
| Parameter | Type | Description |
|---|---|---|
status | string | Task status (completed, failed, running) |
run_id | string | Unique ID for this research task |
message | string | Status message |
content | object | Research results (structured based on output_schema) |
basis | array | Citations and sources with reasoning and confidence levels |
↳ field | string | Output field dot-notation path |
↳ reasoning | string | Explanation for the result |
↳ citations | array | Array of sources |
↳ url | string | Source URL |
↳ title | string | Source title |
↳ excerpts | array | Relevant excerpts from the source |
↳ confidence | string | Confidence level (high, medium) |