Analytic

Learn how to analyze and troubleshoot your chatflows and agentflows


There are several analytic providers Flowise integrates with:

Setup

  1. At the top right corner of your Chatflow or Agentflow, click Settings > Configuration

  1. Then go to the Analyse Chatflow section

  1. You will see a list of providers, along with their configuration fields

  1. Fill in the credentials and other configuration details, then turn the provider ON

API

Once the analytic has been turned ON from the UI, you can override or provide additional configuration in the body of the Prediction API:

{
    "question": "hi there",
    "overrideConfig": {
        "analytics": {
            "langFuse": { // langSmith, langFuse, lunary, langWatch
                "userId": "user1"
            }
        }
    }
}

Last updated