Parallel web systems
ParallelWebSystemsToolSpec #
Bases: BaseToolSpec
Parallel AI tool spec
This tool provides access to Parallel Web Systems Search and Extract APIs, enabling LLM agents to perform web research and content extraction.
The Search API returns structured, compressed excerpts from web search results optimized for LLM consumption.
The Extract API converts public URLs into clean, LLM-optimized markdown, including JavaScript-heavy pages and PDFs.
Source code in .build/python/llama-index-integrations/tools/llama-index-tools-parallel-web-systems/llama_index/tools/parallel_web_systems/base.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | |
search
async
#
search(
objective: Optional[str] = None,
search_queries: Optional[List[str]] = None,
max_results: int = 10,
mode: Optional[str] = None,
excerpts: Optional[Dict[str, Any]] = None,
source_policy: Optional[Dict[str, Any]] = None,
fetch_policy: Optional[Dict[str, Any]] = None,
) -> List[Document]
Search the web using Parallel Search API
Returns structured, compressed excerpts optimized for LLM consumption.
At least one of objective or search_queries must be provided.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
objective
|
Optional[str]
|
Natural-language description of what the web search is trying to find. This can include guidance about preferred sources or freshness. |
None
|
search_queries
|
Optional[List[str]]
|
Optional list of traditional keyword search queries to guide the search. May contain search operators. Max 5 queries, 200 chars each. |
None
|
max_results
|
int
|
Upper bound on the number of results to return (1-40). The default is 10 |
10
|
mode
|
Optional[str]
|
Search mode preset. 'one-shot' returns more comprehensive results and longer excerpts for single response answers. 'agentic' returns more concise, token-efficient results for use in an agentic loop. |
None
|
excerpts
|
Optional[Dict[str, Any]]
|
Optional settings to configure excerpt generation. Example: {'max_chars_per_result': 1500} |
None
|
source_policy
|
Optional[Dict[str, Any]]
|
Optional source policy governing domain and date preferences in search results. |
None
|
fetch_policy
|
Optional[Dict[str, Any]]
|
Policy for cached vs live content. Example: {'max_age_seconds': 86400, 'timeout_seconds': 60} |
None
|
Returns:
| Type | Description |
|---|---|
List[Document]
|
A list of Document objects containing search results with excerpts |
List[Document]
|
and metadata including url, title, and publish_date. |
Source code in .build/python/llama-index-integrations/tools/llama-index-tools-parallel-web-systems/llama_index/tools/parallel_web_systems/base.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
extract
async
#
extract(
urls: List[str],
objective: Optional[str] = None,
search_queries: Optional[List[str]] = None,
excerpts: Union[bool, Dict[str, Any]] = True,
full_content: Union[bool, Dict[str, Any]] = False,
fetch_policy: Optional[Dict[str, Any]] = None,
) -> List[Document]
Extract clean, structured content from web pages using Parallel AI's Extract API.
Converts public URLs into clean, LLM-optimized markdown including JavaScript-heavy pages and PDFs
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
urls
|
List[str]
|
List of URLs to extract content from. |
required |
objective
|
Optional[str]
|
Natural language objective to focus extraction on specific topics. The returned excerpts will be relevant to this objective. |
None
|
search_queries
|
Optional[List[str]]
|
Specific keyword queries to focus extraction. |
None
|
excerpts
|
Union[bool, Dict[str, Any]]
|
Include relevant excerpts. Can be True/False or a dict with settings like {'max_chars_per_result': 2000}. Excerpts are focused on objective/queries if provided. |
True
|
full_content
|
Union[bool, Dict[str, Any]]
|
Include full page content. Can be True/False or a dict with settings like {'max_chars_per_result': 3000}. |
False
|
fetch_policy
|
Optional[Dict[str, Any]]
|
Cache vs live content policy. Example: {'max_age_seconds': 86400, 'timeout_seconds': 60, 'disable_cache_fallback': False} |
None
|
Returns:
| Type | Description |
|---|---|
List[Document]
|
A list of Document objects containing extracted content with metadata |
List[Document]
|
including url, title, publish_date, and excerpts |
Source code in .build/python/llama-index-integrations/tools/llama-index-tools-parallel-web-systems/llama_index/tools/parallel_web_systems/base.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | |
options: members: - ParallelWebSystemsToolSpec