From f7bd00afda1f3aef64083eebff7132a070896882 Mon Sep 17 00:00:00 2001 From: FunkEngine <123712145+FunkEngine2023@users.noreply.github.com> Date: Sat, 14 Oct 2023 04:38:47 -0400 Subject: [PATCH] Typo. Minor. --- aiserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiserver.py b/aiserver.py index ae9b1f67..df41a525 100644 --- a/aiserver.py +++ b/aiserver.py @@ -8190,7 +8190,7 @@ class GenerationOutputSchema(KoboldSchema): results: List[GenerationResultSchema] = fields.List(fields.Nested(GenerationResultSchema), required=True, metadata={"description": "Array of generated outputs."}) class StoryNumsChunkSchema(KoboldSchema): - num: int = fields.Integer(required=True, metadata={"description": "Guaranteed to not equal the `num` of any other active story chunk. Equals 0 iff this is the first action of the story (the prompt)."}) + num: int = fields.Integer(required=True, metadata={"description": "Guaranteed to not equal the `num` of any other active story chunk. Equals 0 if this is the first action of the story (the prompt)."}) class StoryChunkSchema(StoryNumsChunkSchema, KoboldSchema): text: str = fields.String(required=True, metadata={"description": "The text inside this story chunk."})