- Print
- PDF
Version 1.82
17 April, 2024
Before updating Knovvu VA v1.82, please check for duplicate entities using the provided query for both MS SQL and PostgreSQL. If any duplicate entities exist, they should be manually updated prior to deployment.
select MyProjectsEntitiesTable."TenantId", MyProjectsEntitiesTable."ProjectId", MyProjectsEntitiesTable."ProjectName", MyProjectsEntitiesTable."EntityName", MyIntentEntitiesTable."VirtualAgentName", MyIntentEntitiesTable."IntentName"
from (select rp."TenantId" as "TenantId", rp."Id" as "ProjectId", rp."Name" as "ProjectName", rne."Name" as "EntityName" from "RvnProjects" rp , "RvnProjectNamedEntities" rpne, "RvnNamedEntities" rne
where rp."Id" = rpne."ProjectsId" and rpne."NamedEntitiesId" = rne."Id") as MyProjectsEntitiesTable,
(select rp."Id" as "ProjectId", rp."Name" as "ProjectName", rva."Name" as "VirtualAgentName", ri."Name" as "IntentName", rne."Name" as "EntityName" from "RvnProjects" rp , "RvnVirtualAgents" rva , "RvnIntents" ri, "RvnNamedEntities" rne , "RvnIntentNamedEntities" rine
where rine."NamedEntitiesId" = rne."Id" and rine."IntentsId" = ri."Id" and rva."Id" = ri."VirtualAgentId" and rp."Id" = rva."ProjectId") as MyIntentEntitiesTable
where MyProjectsEntitiesTable."ProjectId" = MyIntentEntitiesTable."ProjectId" and MyProjectsEntitiesTable."EntityName" = MyIntentEntitiesTable."EntityName" order by MyProjectsEntitiesTable."TenantId"
Enhancements
Gen Q&A with URLs:
With the latest update, leveraging the Gen Q&A feature with URLs has become a reality! This enhancement empowers users to tap into their website's resources, transforming it into a robust knowledge base for their virtual assistants. From the "training" part of the project settings, users can enter the website URL, and even exclude the URLs they don't want to include in the training. After training the model with the given website URL's, users can ask their questions and the system generates responses based on the context of the question and relevant information it has been trained on.Project Creation with AI:
Creating a project has never been this easy! It is now possible to create a project with a full set of intents & utterances using AI. Simply, you have to enter the description by telling the purpose of the project and define the number of entities and utterances. After, the project is created with the generated intents & utterances.Exporting Projects with Gen Q&A Files:
When files are added for Gen Q&A in a project, they are included in the project export as well. When the project is imported back, the files are included without being trained.
Improvements
Prevention of Creating Duplicate Entities and Project Import:
The creation of global and intent entities with identical names, as well as importing projects containing duplicate entities has been prevented. Previously, it was possible to create a global entity with the same name as an existing intent entity, and to import such projects. This update enhances clarity and prevents potential conflicts in entity naming.Slow Loading Fallback Messages:
The fallback chart on the dashboard started slowing down in previous versions, prompting an improvement with a script. However, this process repeated across environments. The script is implemented as a control-apply during deployment and became an integral part of the product.Adding Prebuilts for HR Bot:
New prebuilts for HR Bot is added for Turkish, English and Arabic Languages.VA - RTL Improvements while Writing Prompts and in Testchat:
Some improvements have been made about RTL when writing prompts & inputs in the Arabic Language.Minor UI Improvements:
Several minor improvements have been made to the user interface to enhance user experience and usability.Minor Bug Fixes:
Various minor bugs have been addressed to improve overall system stability and performance.