File size: 532 Bytes
e294914 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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}") |