1. your website is not clickable 2. do you design the flow before going into implement it? 3. does VF not have a built-in failure capture? surprised Make is needed here Notes of the video 1. testing early and frequently, be careful not spending too much token 2. double check the generated utterance for intent sample, cover expression variety and misspelling, test this 3. for debugging, find the parameter in the left panel and turn on intent confidence score, you can adjust the threshold for this score 4. you can route intent 1-1 OR use globally listening triggers 5. for AI to generate response, use last_utterance to query the knowledge hub, you can also adjust model parameters here
@RobWynn4 ай бұрын
1. Thanks, I fixed it! 2. Yea, that's probably a good idea so you have some structure/framework for what you're building. The agent built in this tutorial is a simplified version of the agent I built for my website, so I already had that design to work from. 3. Great question. You could configure the agent to send you an email with the user's question all within the VF workspace by using a Javascript function, so Make isn't absolutely required. But for this tutorial, one of the ideas was to keep things as low-code/no-code as possible. Additionally, when all is said and done, it's arguably easier to get everything set up with Make than it is to design a JS function and use it in VF, at least for a relatively simple task. As things get more complex it might make sense to start building out functions.