Webflow answers in seconds

Stop searching through documentation and ask Flowfind instead

Trusted by Webflow professionals

Capabilities

Everything you need to master Webflow

Semantic search that understands intent

Ask questions naturally and get results that match what you actually need.

Streaming answers delivered in real time

Watch responses appear instantly, no waiting for slow database queries.

Source citations you can trust

Every answer links back to official documentation so you verify everything.

Multi-turn conversations that remember context

Build on previous questions without repeating yourself or losing the thread.

Under the hood

Powered by Pinecone vector search and OpenAI GPT-4o-mini. Built for speed, designed for accuracy, deployed on Webflow Cloud.

TypeScript
/**
   * RAG Pipeline for Flow Find
   * Retrieval-Augmented Generation using Pinecone + OpenAI
   */

  export async function generateAnswer(
    query: string,
    options?: RAGOptions
  ): Promise {
    // 1. Generate embedding from user query
    const embedding = await getEmbedding(query);

    // 2. Search Pinecone for similar chunks
    const chunks = await searchSimilarChunks(embedding, {
      topK: options?.top_k || 5,
      filter: options?.sourceTypes
    });

    // 3. Assemble context from top matches
    const context = chunks.map(chunk => ({
      content: chunk.metadata.content,
      source: chunk.metadata.uri,
      title: chunk.metadata.title
    }));

    // 4. Stream response from GPT-4o-mini
    const stream = await openai.chat.completions.create({
      model: 'gpt-4o-mini',
      messages: [
        { role: 'system', content: SYSTEM_PROMPT },
        { role: 'user', content: buildPrompt(query, context) }
      ],
      stream: true
    });

    return streamResponse(stream, chunks);
  }

"Flowfind cut my research time in half. I used to dig through docs for years. Now I get answers in seconds."

Jordan Maslyn
Lead Solutions Architect