AI-Studio/app/MindWork AI Studio/Assistants/Builder/LuaResponseParseError.cs
Peer Hogeterp 4d8d30e15e
Added tool calling support (#731)
Co-authored-by: krut_ni <nils.kruthoff@dlr.de>
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
2026-09-04 15:48:07 +02:00

16 lines
353 B
C#

namespace AIStudio.Assistants.Builder;
public enum LuaResponseParseError
{
NONE,
MISSING_JSON_OBJECT,
INVALID_JSON,
EMPTY_JSON_OBJECT,
UNSUPPORTED_SCHEMA_VERSION,
MISSING_PLUGIN_METADATA,
MISSING_ASSISTANT_METADATA,
INCOMPLETE_PLUGIN_METADATA,
INCOMPLETE_ASSISTANT_METADATA,
MISSING_LUA,
LUA_MISSING_ID,
}