# SearXNG

<figure><img src="/files/9ncF3IuOJV1ZM0KGY5Sy" alt="" width="283"><figcaption><p>Nodo SearXNG</p></figcaption></figure>

### Configurar SearXNG

Sigue la [documentación oficial](https://docs.searxng.org/admin/installation.html) para configurar SearXNG localmente. En este caso, usaremos Docker Compose para configurarlo.

Navega al repositorio [searxng-docker](https://github.com/searxng/searxng-docker) y sigue las instrucciones de configuración.

Asegúrate de que `server.limiter` esté configurado como `false` y que `json` esté incluido en `search.formats`. Estos parámetros se pueden definir en `searxng/settings.yml`:

```yaml
server:
  limiter: false
general:
  debug: true
search:
  formats:
    - html
    - json
```

Usa `docker-compose up -d` para iniciar el contenedor. Abre el navegador web y ve a **<http://localhost:8080/search>**, podrás ver la página de SearXNG.

### Uso en Flowise

Arrastra y suelta el nodo SearXNG en el canvas. Completa la Base URL como **<http://localhost:8080>.** También puedes especificar otros parámetros de búsqueda si es necesario. El LLM determinará automáticamente qué usar para la pregunta de consulta de búsqueda.

<figure><img src="/files/00Gsg7htnWAKaXubEINj" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: 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:

```
GET https://docs.flowiseai.com/espanol/documentacion-oficial/integraciones/langchain/tools/searxng.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
