Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.64 KB

analytic.md

File metadata and controls

49 lines (33 loc) · 1.64 KB
description
Learn how to analyze and troubleshoot your chatflows and agentflows

Analytic


There are several analytic providers Flowise integrates with:

Setup

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

Screenshot of user clicking in the configuration menu

  1. Then go to the Analyse Chatflow section

Screenshot of the Analyse Chatflow section with the different Analytics providers

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

Screenshot of an analytics provider with credentials fields expanded

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

Screenshot of analytics providers enabled

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"
            }
        }
    }
}