We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rather than having to type 'Learn n', allow the user to select results to learn.
The text was updated successfully, but these errors were encountered:
Not sure if streamlit provides a component that would make this easy --
Maybe this? https://pypi.org/project/streamlit-option-menu/
import streamlit as st from streamlit_option_menu import option_menu options = ["Option 1", "Option 2", "Option 3"] selected_option = option_menu("Select an option", options, default_index=0) st.write("You selected:", selected_option)
Sorry, something went wrong.
No branches or pull requests
Rather than having to type 'Learn n', allow the user to select results to learn.
The text was updated successfully, but these errors were encountered: