zach commited on
Commit
ca266e0
·
1 Parent(s): 351625c

Add voting constants

Browse files
Files changed (1) hide show
  1. src/constants.py +6 -0
src/constants.py CHANGED
@@ -8,6 +8,12 @@ This module defines global constants used throughout the project.
8
  PROMPT_MIN_LENGTH: int = 10
9
  PROMPT_MAX_LENGTH: int = 300
10
 
 
 
 
 
 
 
11
  # A collection of pre-defined prompts categorized by theme, used to provide users with inspiration for generating creative text.
12
  SAMPLE_PROMPTS = {
13
  '🚀 Dramatic Monologue (Stranded Astronaut)':
 
8
  PROMPT_MIN_LENGTH: int = 10
9
  PROMPT_MAX_LENGTH: int = 300
10
 
11
+ # Vote button constants
12
+ OPTION_ONE: str = "Option 1"
13
+ OPTION_TWO: str = "Option 2"
14
+ VOTE_FOR_OPTION_ONE: str = "Vote for option 1"
15
+ VOTE_FOR_OPTION_TWO: str = "Vote for option 2"
16
+
17
  # A collection of pre-defined prompts categorized by theme, used to provide users with inspiration for generating creative text.
18
  SAMPLE_PROMPTS = {
19
  '🚀 Dramatic Monologue (Stranded Astronaut)':