{
    "name": "B2B RFP Proposal Generator",
    "flow": [
        {
            "id": 1,
            "module": "google-drive:WatchFiles",
            "version": 1,
            "parameters": {},
            "mapper": {
                "folderId": "your_rfp_folder_id"
            },
            "metadata": {
                "designer": {
                    "x": 0,
                    "y": 0
                },
                "name": "New RFP Uploaded"
            }
        },
        {
            "id": 2,
            "module": "anthropic:actionCreateMessage",
            "version": 1,
            "parameters": {},
            "mapper": {
                "model": "claude-3-5-sonnet-20240620",
                "system": "Extract core requirements from this RFP document into strict JSON.",
                "messages": [
                    {
                        "role": "user",
                        "content": "{{1.file_content}}"
                    }
                ]
            },
            "metadata": {
                "designer": {
                    "x": 300,
                    "y": 0
                },
                "name": "Parse Client RFP"
            }
        },
        {
            "id": 3,
            "module": "pinecone:searchVectors",
            "version": 1,
            "parameters": {},
            "mapper": {
                "query": "{{2.content.requirements}}",
                "topK": 5
            },
            "metadata": {
                "designer": {
                    "x": 600,
                    "y": 0
                },
                "name": "Search Past Proposals"
            }
        },
        {
            "id": 4,
            "module": "anthropic:actionCreateMessage",
            "version": 1,
            "parameters": {},
            "mapper": {
                "model": "claude-3-5-sonnet-20240620",
                "system": "Draft a highly tailored proposal response using only the provided historical data.",
                "messages": [
                    {
                        "role": "user",
                        "content": "Client Needs: {{2.content}} \n\n Our Historical Answers: {{3.matches}}"
                    }
                ]
            },
            "metadata": {
                "designer": {
                    "x": 900,
                    "y": 0
                },
                "name": "Draft Custom Proposal"
            }
        },
        {
            "id": 5,
            "module": "google-docs:CreateADocument",
            "version": 1,
            "parameters": {},
            "mapper": {
                "name": "DRAFT: Proposal for {{1.file_name}}",
                "content": "{{4.content}}"
            },
            "metadata": {
                "designer": {
                    "x": 1200,
                    "y": 0
                },
                "name": "Create Google Doc"
            }
        }
    ],
    "metadata": {
        "version": 1,
        "description": "RFP Generator Blueprint by PremiumAIGuide.com"
    }
}