AI-Studio/app/MindWork AI Studio/Assistants/Builder/LuaResponse.Parse.cs
nilskruthoff a1d2ff32fc
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Read metadata (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
Added a no-code assistant builder (#823)
2026-07-05 17:48:00 +02:00

150 lines
4.1 KiB
C#

using System.Text.Json;
namespace AIStudio.Assistants.Builder;
internal sealed partial class LuaResponse
{
private static readonly JsonSerializerOptions JSON_OPTIONS = new()
{
PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower,
AllowTrailingCommas = false,
ReadCommentHandling = JsonCommentHandling.Disallow,
MaxDepth = 32,
};
public static bool TryParse(string modelResponse, out LuaResponse response, out LuaResponseParseError error, out string technicalDetails)
{
response = new();
error = LuaResponseParseError.NONE;
technicalDetails = string.Empty;
var json = ExtractJson(modelResponse);
if (string.IsNullOrWhiteSpace(json))
{
error = LuaResponseParseError.MISSING_JSON_OBJECT;
return false;
}
LuaResponse? parsed;
try
{
parsed = JsonSerializer.Deserialize<LuaResponse>(json, JSON_OPTIONS);
}
catch (JsonException e)
{
error = LuaResponseParseError.INVALID_JSON;
technicalDetails = e.Message;
return false;
}
if (parsed is null)
{
error = LuaResponseParseError.EMPTY_JSON_OBJECT;
return false;
}
if (!parsed.IsValid(out error))
return false;
response = parsed;
return true;
}
private bool IsValid(out LuaResponseParseError error)
{
error = LuaResponseParseError.NONE;
if (!string.Equals(this.SchemaVersion, SCHEMA_VERSION_VALUE, StringComparison.Ordinal))
{
error = LuaResponseParseError.UNSUPPORTED_SCHEMA_VERSION;
return false;
}
if (this.Plugin is null)
{
error = LuaResponseParseError.MISSING_PLUGIN_METADATA;
return false;
}
if (this.Assistant is null)
{
error = LuaResponseParseError.MISSING_ASSISTANT_METADATA;
return false;
}
if (string.IsNullOrWhiteSpace(this.Plugin.Name) ||
string.IsNullOrWhiteSpace(this.Plugin.Description) ||
this.Plugin.Categories.Length == 0 ||
this.Plugin.Categories.Any(string.IsNullOrWhiteSpace))
{
error = LuaResponseParseError.INCOMPLETE_PLUGIN_METADATA;
return false;
}
if (string.IsNullOrWhiteSpace(this.Assistant.Title) ||
string.IsNullOrWhiteSpace(this.Assistant.Description) ||
string.IsNullOrWhiteSpace(this.Assistant.SystemPrompt) ||
string.IsNullOrWhiteSpace(this.Assistant.SubmitText))
{
error = LuaResponseParseError.INCOMPLETE_ASSISTANT_METADATA;
return false;
}
if (string.IsNullOrWhiteSpace(this.FullLua))
{
error = LuaResponseParseError.MISSING_LUA;
return false;
}
if (!this.FullLua.Contains("ID = \"", StringComparison.Ordinal))
{
error = LuaResponseParseError.LUA_MISSING_ID;
return false;
}
return true;
}
private static string ExtractJson(string input)
{
var start = input.IndexOf('{');
if (start < 0)
return string.Empty;
var depth = 0;
var insideString = false;
for (var index = start; index < input.Length; index++)
{
if (input[index] == '"' && !IsEscaped(input, index))
insideString = !insideString;
if (insideString)
continue;
switch (input[index])
{
case '{':
depth++;
break;
case '}':
depth--;
break;
}
if (depth == 0)
return input[start..(index + 1)];
}
return string.Empty;
}
private static bool IsEscaped(string input, int index)
{
var backslashCount = 0;
for (var i = index - 1; i >= 0 && input[i] == '\\'; i--)
backslashCount++;
return backslashCount % 2 == 1;
}
}