Skip to content

Commit

Permalink
Merge branch 'main' into stage
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan authored Jan 12, 2024
2 parents 1e9d9ee + 6f93df3 commit 1796155
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ class CharacterOutput(BaseModel):
# }


# class CharacterChatMessage(BaseModel):
# character: Character
# message: str
class CharacterChatMessage(BaseModel):
character: Character
message: str

# def __str__(self):
# return f"{self.character.name}: {self.message}"
def __str__(self):
return f"{self.character.name}: {self.message}"

0 comments on commit 1796155

Please sign in to comment.