
# defines the agent

(define chat-agent

    (:states 
        (chat-bot
            (:text "Chat Bot:")
        )
        (user
            (:text "User:")
            (:flags :env-input)
        )
    )
    
    (:behavior
        (always
            (next chat-bot user)
        )
    )

)
