We are in the process of migrating to the Freedom UI and as such have access to the AI capabilities, for which I am interested to learn from other users of their experiences.
Have your users and company found the use of AI of benefit and if so, what would you say would biggest benefits you have found?
During testing, we have found a very high average token consumption (between 20,000 and 50,000) and am concerned about how much each interaction 'costs' in tokens and that will limit our usage.
Thanks for your reply. I have looked at the documentation and aware of this information. I was seeing if other users have experiences of your AI implementation. Real world usage is often different, and as our testing showed such different token usage, I was interested to capture this feedback.
We found some validation errors indicating we have a package hierarchy issue on an older package that already deployed to production. To resolve this, we need to unlock some packages and change their dependencies. While I am able to unlock them with the following script below, I still can't change the package dependencies even when unlocked. How can I change the package dependencies on a package that has already deployed?
DECLARE @packageName nvarchar(50);
SET @packageName ='Package_Name';
UPDATE SysPackage
SET IsChanged =0,
InstallType =1,
IsLocked =0,
Maintainer ='Customer'
WHERE Name = @packageName
AND SysWorkspaceId IN (SELECT
Id
FROM SysWorkspace
WHERE Name ='Default');
UPDATE SysSchema
SET IsChanged =0,
IsLocked =0
FROM SysSchema
JOIN SysPackage
ON SysSchema.SysPackageId= SysPackage.Id
WHERE SysPackage.name= @packageName