Spaces:
Sleeping
Sleeping
File size: 471 Bytes
64df20d 0536b37 64df20d 0536b37 64df20d 0536b37 64df20d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
from utils.aiml_api_utils import call_aiml_api
def show_ai_explanations():
st.title("Ask AI for Machine Learning Explanations")
# Input field for user to ask an ML question
user_question = st.text_input("Ask a question about machine learning:")
if st.button("Get Explanation"):
# Call the AI/ML API with the user's question
explanation = call_aiml_api(user_question, max_tokens=400)
st.write(explanation)
|