mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 05:21:36 +00:00
Improved logging for profile table parsing
This commit is contained in:
parent
0e14a3cb58
commit
4a092020d2
@ -94,7 +94,6 @@ public record Profile(
|
|||||||
|
|
||||||
public static bool TryParseProfileTable(int idx, LuaTable table, Guid configPluginId, out ConfigurationBaseObject template)
|
public static bool TryParseProfileTable(int idx, LuaTable table, Guid configPluginId, out ConfigurationBaseObject template)
|
||||||
{
|
{
|
||||||
LOGGER.LogInformation($"\n Profile table parsing {idx}.\n");
|
|
||||||
template = NO_PROFILE;
|
template = NO_PROFILE;
|
||||||
if (!table.TryGetValue("Id", out var idValue) || !idValue.TryRead<string>(out var idText) || !Guid.TryParse(idText, out var id))
|
if (!table.TryGetValue("Id", out var idValue) || !idValue.TryRead<string>(out var idText) || !Guid.TryParse(idText, out var id))
|
||||||
{
|
{
|
||||||
|
|||||||
@ -4,4 +4,5 @@
|
|||||||
- Added an option to hide the policy definition in the Document Analysis Assistant (in preview) when exporting and distributing that policy by a configuration plugin in organizations, making it easier for users to use.
|
- Added an option to hide the policy definition in the Document Analysis Assistant (in preview) when exporting and distributing that policy by a configuration plugin in organizations, making it easier for users to use.
|
||||||
- Added the policy export functionality to the Document Analysis Assistant (in preview). You can now export policies as Lua code for a configuration plugin to distribute the policy across your organization.
|
- Added the policy export functionality to the Document Analysis Assistant (in preview). You can now export policies as Lua code for a configuration plugin to distribute the policy across your organization.
|
||||||
- Improved the error checking & logging behavior when the installed `PDFium` version did not meet the minimum required version.
|
- Improved the error checking & logging behavior when the installed `PDFium` version did not meet the minimum required version.
|
||||||
|
- Improved the logging behavior when parsing profile tables from configuration plugins.
|
||||||
- Fixed a bug where the global minimum confidence level was not being applied to the assistants.
|
- Fixed a bug where the global minimum confidence level was not being applied to the assistants.
|
||||||
Loading…
Reference in New Issue
Block a user