import streamlit as st | |
TEMPLATE = """ | |
A complete list of commands that are designed to facilitate the use of the voice assistant Chelsea. | |
The complete list consists of no more than 100 commands written in a txt file. | |
The list of commands will be updated as the assistant is developed. | |
The first version of the program (Arctic Monkeys) contains a total of 2 commands. | |
The list of commands and their use. | |
""" | |
class Documentation(): | |
def execution(self): | |
st.write(f"Documentation:\n\n{TEMPLATE}") |