Expand my Community achievements bar.

Adobe Campaign User Groups are live now. Join our Adobe Campaign User Groups and connect with your local leaders!
SOLVED

Chat Bot in Web application

Avatar

Level 1

Hi Team,
I am trying to implant the js and html files created for Chat bot within the web application.
The chat bot is working fine when opened using browser.
It includes the following files 
1.index.html

2.chat.css

3.home.css

4.chat.js - includes the function of buttons
5.responces.js- includes the functionalities added to get  responses.

Can you kindly guide me where and in which activity should I have to put the above codes in web application.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @vaishbharathi 

You can load these files into the file resource folder and then place them on the web application, just like any other file. Alternatively, you can use the chat bot CDN.

The 'Index.html' will be placed in the page activity where you can modify all other sources and links to the CSS files.

OR

You can build your own JSP page to override the web application.

Is 'responses.js' responsible for saving responses to the chat bot? There should be some examples on the webpage demonstrating how to implement the chat bot. Previously, I only inserted JavaScript and added some setup similar to Google Analytics.



Marcel

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

Hello @vaishbharathi 

You can load these files into the file resource folder and then place them on the web application, just like any other file. Alternatively, you can use the chat bot CDN.

The 'Index.html' will be placed in the page activity where you can modify all other sources and links to the CSS files.

OR

You can build your own JSP page to override the web application.

Is 'responses.js' responsible for saving responses to the chat bot? There should be some examples on the webpage demonstrating how to implement the chat bot. Previously, I only inserted JavaScript and added some setup similar to Google Analytics.



Marcel

Hi @Marcel_Szimonisz 

'responses.js' will take the input questions from the user and provides the output.
For example: 

 

// Calculator functionality
if (isMathExpression(input)) {
const result = calculate(input);
return `The result is: ${result}`;
}

// Function to perform basic calculator operations
function calculate(input) {
try {
const result = eval(input);
return !isNaN(result) ? result : "Error";
} catch (error) {
return "Error";
}
}

Thank you for your ideas!

Avatar

Community Advisor

Yes you need to use Page activity in web app to place client side js and back and side JS as needed <%var backEndside = function(){....}/%>

 

Marcel