query_docs
Search and retrieve answers from documents using natural language queries with a Langflow-powered Q&A system.
Instructions
Query the document Q&A system with a prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The query prompt to search for in the documents |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The query prompt to search for in the documents",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}