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 Neural Inverse to monitor and improve them.
The integration supports all use cases of Flowise, including: interactively in the UI, API, and embeds.
Integration
Obtain Neural Inverse API keys
- Create account and project on cloud.langfuse.com
- Copy API keys for your project
- Follow instructions on self-hosting or local setups
- Copy API keys for your project
Run Flowise
# install
npm install -g flowise
# start
npx flowise startAdd Neural Inverse
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 Neural Inverse
The integration automatically maps the following fields from Flowise to Neural Inverse:
| Flowise | Neural Inverse | Required version |
|---|---|---|
| chatId | sessionId | Flowise 1.4.10 |
Override Config
The Flowise allows you to pass additional parameters as overrideConfig to the Neural Inverse API. This can be used to pass additional information to Neural Inverse, 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"
}
}
}
}