Help AI Search on Custom portals
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2024 06:19 AM
Hello, We are currently working on adapting AI search on my company, an old teammate who left, was in charge of a proof of concept to start using this technology, so he set all of this up on out of the box SNOW portals, like employee center and knowledge portal, and it works very well (dev instance), the issue now is, he left and I am new to this and my task is to do this same work, but on our custom portal, all of the company's work is made on a custom portal, built form scratch, so I need to know if it is even possible to do this on a custom portal (full of widgets), if it acts the same as in out of the box portals, and how I can configure it. Thank you very much
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2024 06:38 AM
Hello @Juan Felipe Car
Platform: AI Search || Knowledge & Troubleshooting... - ServiceNow Community
AI Search Expert-Recommended Practices - ServiceNow Community
(1) Creating Custom EVAM configurations for AI Search ... - ServiceNow Community
Please go throigh above resources it will help you.
if my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
cB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2024 06:48 AM
Yes, it is possible to implement AI Search on a custom ServiceNow portal. Here are the steps you need to follow:
1. **Create a new widget**: You will need to create a new widget for the AI Search. This widget will be added to your custom portal.
2. **Configure the widget**: The widget will need to be configured to use the AI Search. This will involve setting up the data source, the search parameters, and the display options.
3. **Add the widget to the portal**: Once the widget is configured, it can be added to the custom portal. This is done by editing the portal's layout and adding the widget to the desired location.
4. **Test the search**: After the widget is added, you should test the search functionality to ensure it is working as expected. This will involve performing searches and verifying the results are accurate and relevant.
5. **Customize the search results**: Depending on your needs, you may want to customize the search results. This could involve changing the display of the results, adding filters, or modifying the search algorithm.
6. **Monitor and adjust**: After the AI Search is live, you should monitor its performance and make adjustments as needed. This could involve tweaking the search parameters, updating the data source, or making changes to the display options.
Here is a sample code for creating a widget:
javascript
(function() {
/* widget controller */
var c = this;
c.data = {};
c.data.searchTerm = '';
c.search = function() {
if (c.data.searchTerm.length > 0) {
c.server.get({
action: 'search',
searchTerm: c.data.searchTerm
}).then(function(response) {
c.data.results = response.data.results;
});
}
};
})();
In this code, a new widget is created with a search function. The search function sends a request to the server with the search term, and the server returns the search results. The results are then displayed in the widget.
Remember, the AI Search functionality in ServiceNow uses machine learning algorithms to provide relevant search results. Therefore, the more data it has to work with, the better the results will be.
nowKB.com
For asking ServiceNow-related questions try this :
For a better and more optimistic result, please visit this website. It uses a Chat Generative Pre-Trained Transformer ( GPT ) technology for solving ServiceNow-related issues.
Link - https://nowgpt.ai/
For the ServiceNow Certified System Administrator exams try this :
https://www.udemy.com/course/servicenow-csa-admin-certification-exam-2023/?couponCode=NOW-DEVELOPER
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2024 06:54 AM
So in order to do this I absolutely need to create this new search function widget? We Can not just use the search widget we already have?