-
-
Notifications
You must be signed in to change notification settings - Fork 23.2k
Description
This is the setup i have for my chatbot:

This is the code to connect to the chain:
import requests
API_URL = "https://flowise-chat-doc-********************************************"
def query(payload):
response = requests.post(API_URL, json=payload)
return response.json()
output = query({
"question": "Hey, how are you?",
})
========================
This is the inputConfig:
import requests
API_URL = "https://flowise-chat-doc-******************************************************"
def query(payload):
response = requests.post(API_URL, json=payload)
return response.json()
output = query({
"question": "Hey, how are you?",
"overrideConfig": {
"temperature": 1,
"maxTokens": 1,
"topP": 1,
"frequencyPenalty": 1,
}
})
===========================
Now this is the webhook setup in Make.com :
=============================
Data Structure:
==============================
After making a request from Bubble:
No data pass through:
