Skip to content

Commit

Permalink
dont enable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Feb 15, 2024
1 parent 6e50f96 commit 52d9f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/character.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def sync(self):
concept = logos_data.get("concept")
abilities = logos_data.get("abilities")
creation_enabled = abilities.get("creations", True) if abilities else True
story_creation_enabled = abilities.get("story_creations", True) if abilities else True
story_creation_enabled = abilities.get("story_creations", False) if abilities else False
smart_reply = abilities.get("smart_reply", False) if abilities else False
chat_model = logos_data.get("chatModel", "gpt-4-1106-preview")
image = character_data.get("image")
Expand Down

0 comments on commit 52d9f1e

Please sign in to comment.