Flowise Observability & Tracing

Flowise (GitHub) is a no-code builder. It lets you build customized LLM flows with a drag & drop editor.

With the native integration, you can use Flowise to quickly create complex LLM applications in no-code and then use Litefuse to monitor and improve them.

The integration supports all use cases of Flowise, including: interactively in the UI, API, and embeds.

Integration

Obtain Langfuse API keys

  1. Create account and project on cloud.litefuse.ai
  2. Copy API keys for your project

Run Flowise

# install
npm install -g flowise
 
# start
npx flowise start

Add Litefuse

You can optionally add release to tag the current version of the flow. You usually don’t need to change the other options.

Mapping of Flowise to Litefuse

The integration automatically maps the following fields from Flowise to Litefuse:

FlowiseLitefuseRequired version
chatIdsessionIdFlowise 1.4.10

Override Config

The Flowise allows you to pass additional parameters as overrideConfig to the Langfuse API. This can be used to pass additional information to Litefuse, such as userId for user-level tracking.

Learn more about overrideConfig in the Flowise Prediction API documentation.

{
  "question": "hi there",
  "overrideConfig": {
    "analytics": {
      "langFuse": {
        "userId": "user1"
      }
    }
  }
}
Was this page helpful?