Spaces:
Runtime error
Runtime error
import streamlit as st | |
import os | |
from utils import levels | |
LEVEL=0 | |
st.header("AI Eye Tutorial Template") | |
st.subheader("Level 0: Introduction") | |
st.write("""Welcome to the AI Eye Tutorial Template! This template is designed to help you create your own AI Eye tutorial. | |
The template is divided into levels, and each level has a set of tasks that you need to complete before you can move on to the next level. | |
You can use this template to create your own tutorial by completing the tasks in each level and adding your own content. You can also use | |
this template to learn how to use AI Eye by completing the tasks in each level.""") | |
st.info(f"Current Level: {levels.get_level()}") | |
if st.button("Complete"): | |
levels.complete_level(LEVEL) |