We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a59571 commit 2e1c908Copy full SHA for 2e1c908
ChatRPG/API/Tools/WoundCharacterTool.cs
@@ -37,7 +37,8 @@ public class WoundCharacterTool(
37
38
if (character is null)
39
{
40
- return "Could not determine the character to wound.";
+ return "Could not determine the character to wound. The character does not exist in the game. " +
41
+ "Consider creating the character before wounding it.";
42
}
43
44
// Determine damage
@@ -68,7 +69,8 @@ public class WoundCharacterTool(
68
69
70
catch (Exception)
71
- return "Could not determine the character to wound";
72
+ return "Could not determine the character to wound. Tool input format was invalid. " +
73
+ "Please provide a valid character name, description, and severity level in valid JSON without markdown.";
74
75
76
0 commit comments