Share feedback, ideas and get community help

Home
Members
André Gabriel
A
André Gabriel
Offline, last seen last week
Joined December 6, 2024
I need to integrate with another payment platform other than stripe because I need recurring payments. Is it possible to retrieve if a payment was successful or not within the flow? Do you recommend any payment platform?
1 comment
M
I'm getting the error:
Error while executing script

SyntaxError: Unexpected identifier 'aqui'

at new AsyncFunction (<anonymous>)

at <isolated-vm>:3:10

at <isolated-vm>:4:3

What should I do?

And went to see logs, because I enter typebot and all my bots are missing. Days of work.

What should I do ?
1 comment
B
My login page asks only for your email, and when I click it, it gives me a code, then I can login.

I tested different emails and all logged in.

I don't remember my admin admin.

What should I do to remember my admin email and also to lock my login page only for my admin email to be able to enter typebot ?
1 comment
B
Hi,
I created a container in Google Tag Manager, and it asks to include a code both on
<head> (which I found under Settings->Metadata)
<body> which I did not find.

Where do I put this <body> code?

Thanks, Best,
André.
3 comments
A
A
How do I make a backup of all my bots? They are on railway.
2 comments
M
A
I'm using the OpenAI block with chatCompletion.

I want a function so OpenAI can perform web searches as it does on chatgpt.com

I tried a simple code that returns a string, function was called perfectly.

But when I tried a code to make a web search (below) openAI is not calling the function.

On the block, I'm inserting:
  • Create Chat Completion
  • User message: use function GoogleSearch to give me the latest news
  • Function name: GoogleSearch
  • Function description: Make searches on Google
  • Function parameters:
    • string
    • name search
    • description: Search text to make the Google Search
  • Function code:
const API_KEY = 'my key'
const SEARCH_ENGINE_ID = 'mykey'

if (search) {
const url = https://customsearch.googleapis.com/customsearch/v1?key=${API_KEY}&cx=${SEARCH_ENGINE_ID}&q=${encodeURIComponent(busca)}&num=1
return fetch(url)
.then(response => response.json())
.then(data => {
if (data.items && data.items.length > 0) {
return data.items[0].title + "\n" + data.items[0].snippet
}
return "Nenhum resultado encontrado"
})
} else {
return "Nenhum termo de busca fornecido"
}


The URL directly on Chrome works (so my keys are correct).

The bot returns empty.

Two days stuck here :/

Can anyone help me?
1 comment
B