Web search content retriever for Google Custom Search
yaml
type: "io.kestra.plugin.ai.retriever.GoogleCustomWebSearch"Examples
RAG chat with a web search content retriever (answers grounded in search results)
yaml
id: rag
namespace: company.ai
tasks:
  - id: chat_with_rag_and_websearch_content_retriever
    type: io.kestra.plugin.ai.rag.ChatCompletion
    chatProvider:
      type: io.kestra.plugin.ai.provider.GoogleGemini
      modelName: gemini-2.5-flash
      apiKey: "{{ kv('GEMINI_API_KEY') }}"
    contentRetrievers:
      - type: io.kestra.plugin.ai.retriever.GoogleCustomWebSearch
        apiKey: "{{ kv('GOOGLE_SEARCH_API_KEY') }}"
        csi: "{{ kv('GOOGLE_SEARCH_CSI') }}"
    prompt: What is the latest release of Kestra?
Properties
apiKey *Requiredstring
API key
csi *Requiredstring
Custom search engine ID (cx)
maxResults integerstring
 Default 
3Maximum number of results
