Python/智能体/application/state/create_conversation_modal.py

22 lines
398 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
"""
创建会话模态窗状态
"""
import reflex as rx
class CreateConversationModalState(rx.State):
"""
创建会话模态窗状态
"""
# 打开状态True表示打开False表示关闭
is_open: bool = False
@rx.event
def toggle(self, is_open: bool) -> None:
"""
打开/关闭
"""
self.is_open = is_open