Russ Webb
TTypebot
•Created by Russ Webb on 6/7/2024 in #help-and-questions
JavaScript not loading on client
It worked perfectly until the latest update.
7 replies
TTypebot
•Created by Russ Webb on 6/7/2024 in #help-and-questions
JavaScript not loading on client
Yes, I know two 'const' lines are commented out. That was from earlier experiments.
7 replies
TTypebot
•Created by Armando A. on 5/9/2024 in #help-and-questions
Pin a chat bubble? 📍
I too have been trying to do this, as I show a video as part of the chat and then show messages about the video, but the video scrolls away. I'll let you know if I come up with something. Baptiste is right... It's very niche.
7 replies
TTypebot
•Created by Dominik Neugebauer on 5/12/2024 in #help-and-questions
Smaller Text on Mobile
Just do it with the CSS in the Theme settings.
3 replies
TTypebot
•Created by Russ Webb on 5/2/2024 in #help-and-questions
Run function JS on client
Ya, I did that so that gets me close. I was hoping that the Assistant could make a call to "update" the current URL if the user navigates to another part of the platform. For example, the AI asks the user to navigate to the applicable section and now it need to check where they are.
4 replies
TTypebot
•Created by Russ Webb on 5/2/2024 in #help-and-questions
Run function JS on client
The AI Assistant calls the function to get the user's current location on the platform, and asks them to navigate to a new place and checks again to confirm. Just trying to make it happen on the typebot side
4 replies
TTypebot
•Created by Russ Webb on 4/30/2024 in #help-and-questions
Stumped on webhook return value
Well, now that makes way more sense. Sometimes it's hard to see the forest through the trees! Thanks dude!
6 replies
TTypebot
•Created by Russ Webb on 4/27/2024 in #help-and-questions
Append messages
Thanks. I notice some of the templates have a block to append the user message to the chat history so I wasn't sure what needs to be manually added to the history.
3 replies
TTypebot
•Created by magnunramon on 3/16/2024 in #help-and-questions
Unsuccessful attempt to upload audio/incorporate it into the platform
Did you copy the bucket policy from the template in the Typebot help docs, in the S3 storage part? Also, your bucket needs to be set to NOT block public access. AWS doesn't seem to like the CORS policy JSON though. It says it's not a JSON. It is. Not sure what was up with AWS but skip that and it works fine.
Just make sure you're not opening a critical bucket open to the public. Only allow public access to a bucket dedicated to your bots.
19 replies
TTypebot
•Created by Jonathan DUMONT on 4/27/2024 in #help-and-questions
Using Ask Assistant with Basic ChatGPT Template ?
Do you have the user message variable in the instructions of the OpenAI block?
3 replies
TTypebot
•Created by Russ Webb on 4/21/2024 in #help-and-questions
Color Picker
Makes sense. Ya, I'm going to add a client-side js to open a color picker modal after a button selection in the bot and then save that value to the variable. If I pull it off, I'll share it.
4 replies
TTypebot
•Created by Kamal on 4/19/2024 in #help-and-questions
Can we add back button on user bubbles?
Or even a better term like "Start Over"
9 replies
TTypebot
•Created by Kamal on 4/19/2024 in #help-and-questions
Can we add back button on user bubbles?
Could you just create a button "Home" to take them back to that part of the flow?
9 replies
TTypebot
•Created by Russ Webb on 3/18/2024 in #help-and-questions
variables in script for bot name and colors.
I figured out a workaround that works perfect for me. I pair typebot with n8n. Instead of using the default typebot script in the head of my html, I instead called the webhook of an n8n workflow as the 'src' in the script, retrieved the desired colors, avatar, size, etc (theme options for bubble) and then return a custom 'created-on-the-fly' javascript body that then executes on the host to display the bot with the correct configuration. Works slick and honestly, it's going to be something I use for many other embedded tools. Just thought I'd share.
5 replies
TTypebot
•Created by Russ Webb on 3/18/2024 in #help-and-questions
Hide bot and bubble if not authorized
I may have answered my own question. It looks like I could use the typebot API to add CSS to the bot to hide everything, based on the result of a webhook to check url. I also see I can change the button background and icon color, also in the API. Is that the most sensible approach? So, get url > send to webhook > webhook responds with something like "not authorized" > flow changes CSS to hide bot using API. Now to figure out how to apply the CSS to the current bot session, not every call of the bot on other pages.
2 replies
TTypebot
•Created by Wilson on 3/13/2024 in #help-and-questions
HTTP Request Form-data param
You should just be able to set 'Headers' to a key of "Content-Type" and value to "application/x-www-form-urlencoded". Then, in the Body section, toggle on Custom Body and put in your JSON data with the values:
{
"token": "sdfhlkasjdhflkajsdhfkljashdfkjahskdjf",
"app": "appname",
"cpfcnpj":"11122233344455",
"senha: "password",
"contrato": "123"
}
5 replies
TTypebot
•Created by Russ Webb on 3/12/2024 in #help-and-questions
webhook firing too soon
Well, I realized I had a wrong variable value being sent in the http request and that the variables ARE populating before the webhook fires. I'm still curious why the webhook fires before the text blocks appear from the second group.
3 replies
TTypebot
•Created by samuel on 2/20/2024 in #help-and-questions
How I can define a Typebot variable into script?
Can this work inside the function action of a Call Assistant block?
4 replies