Agent Tests for API, MAUI, and Slop Features

This commit is contained in:
2026-06-03 19:08:35 -04:00
parent 46150d3a69
commit 0feac0f0a0
142 changed files with 4156 additions and 1462 deletions
+3 -3
View File
@@ -21,10 +21,10 @@ public class EntityModel
private static Dictionary<string, List<EntityModel>>? _entityModelsByHotkey;
public EntityModel(string data, string entity, bool isSpeculative = false)
public EntityModel(string dataType, string entityType, bool isSpeculative = false)
{
DataType = data;
EntityType = entity;
DataType = dataType;
EntityType = entityType;
IsSpeculative = isSpeculative;
}