Dmitry1313 commited on
Commit
dedf1af
·
verified ·
1 Parent(s): 4b5ed99

Update states.py

Browse files
Files changed (1) hide show
  1. states.py +10 -0
states.py CHANGED
@@ -1,4 +1,8 @@
1
  # states.py
 
 
 
 
2
  from aiogram.fsm.state import State, StatesGroup
3
 
4
  class UserStates(StatesGroup):
@@ -24,5 +28,11 @@ class UserStates(StatesGroup):
24
  waiting_for_shot_type_photoshoot = State()
25
  waiting_for_prompt_photoshoot = State()
26
 
 
 
 
 
 
 
27
  # 🔹 ОБЩЕЕ
28
  generating = State()
 
1
  # states.py
2
+ """
3
+ 🎨 AI PhotoStudio — FSM States (COMPLETE + дополнено)
4
+ """
5
+
6
  from aiogram.fsm.state import State, StatesGroup
7
 
8
  class UserStates(StatesGroup):
 
28
  waiting_for_shot_type_photoshoot = State()
29
  waiting_for_prompt_photoshoot = State()
30
 
31
+ # 🔹 ДОПОЛНИТЕЛЬНЫЕ СОСТОЯНИЯ ДЛЯ УПРОЩЁННОГО ПРОЦЕССА
32
+ waiting_for_face_photo = State() # получение фото лица
33
+ choosing_references = State() # выбор, добавлять ли референсы
34
+ waiting_for_reference_photos = State() # ожидание референсных фото
35
+ choosing_style = State() # выбор стиля
36
+
37
  # 🔹 ОБЩЕЕ
38
  generating = State()