Chatbots / Assistants

We build chatbots around what each client actually needs, and they tend to fall into two kinds. User-facing ones sit on your site or app and answer your customers from your own content. Internal ones work behind the scenes and help your team make sense of the company's own files. Here is what each does.

User-facing chatbots

The assistant your visitors talk to. It answers their questions from the content you already have, your docs, your FAQs, your site, and only from what it can actually find, so replies stay accurate instead of invented.

Website assistant
loops

IronFox Assistant

Online

Do you offer refunds on annual plans?

Retrieving from your sources

  1. Understand the question
  2. Decide how to answera real question
  3. Search your contentdocs + FAQs
  4. Keep the best matches3 passages
  5. Write the reply
Yes. Annual plans can be refunded within 14 days of purchase. After that, we apply a prorated credit toward your next invoice.

How it works

  1. 1

    Read the question

    The assistant works out what the visitor is actually asking.

  2. 2

    Decide how to answer

    A quick hello or thank-you it handles on its own; a real question it takes to your content.

  3. 3

    Search your content

    It looks across your docs, FAQs, and site for the passages that fit the question.

  4. 4

    Keep the best matches

    Only the passages that genuinely answer the question make it through.

  5. 5

    Write the reply

    It composes an answer from what it found, so it stays grounded and never guesses.

Internal chatbots

An assistant for your team, not your customers. It works over the company's own files, from spreadsheets and reports to raw figures, and helps staff find, summarise, and actually analyse what is inside them.

Internal assistant
loops

IronFox Assistant

Online

Which clients brought in the most revenue last quarter?

Working through your files

  1. Understand the request
  2. Find the right filessales-q4.xlsx
  3. Write the query
    SELECT client, SUM(revenue) AS total
    FROM sales_q4
    GROUP BY client
    ORDER BY total DESC
  4. Run it over the data1,284 rows
  5. Return and save the resulttop-clients-q4.csv
Meridian led last quarter, with Halcyon and Vela close behind. I saved the full ranking so you can reopen it any time.
1Meridian€412k
2Halcyon€388k
3Vela€301k

Saved totop-clients-q4.csv

How it works

  1. 1

    Read the request

    It works out what the employee is asking of the data.

  2. 2

    Find the right files

    It locates the relevant company files, from documents to spreadsheets full of numbers.

  3. 3

    Decide the approach

    A straight lookup for a simple question, or real analysis when the figures need crunching.

  4. 4

    Write and run the query

    For anything involved it writes the code to group, rank, and compute across large files, then runs it.

  5. 5

    Answer and save

    It returns the result on screen and saves it as a file, so the team can reopen it without redoing the work.