Add first turn option
This commit is contained in:
@@ -112,6 +112,7 @@ class Assistant(Base):
|
||||
user_id: Mapped[int] = mapped_column(Integer, ForeignKey("users.id"), index=True)
|
||||
name: Mapped[str] = mapped_column(String(255), nullable=False)
|
||||
call_count: Mapped[int] = mapped_column(Integer, default=0)
|
||||
first_turn_mode: Mapped[str] = mapped_column(String(32), default="bot_first")
|
||||
opener: Mapped[str] = mapped_column(Text, default="")
|
||||
generated_opener_enabled: Mapped[bool] = mapped_column(default=False)
|
||||
prompt: Mapped[str] = mapped_column(Text, default="")
|
||||
|
||||
Reference in New Issue
Block a user