import streamlit as st
# HTML code for a differences box
html_code = """
Differences Between Model A and Model B
- Model A: Faster inference time, suitable for low-latency tasks.
- Model B: Higher accuracy on complex datasets.
- Model A: Requires less computational resources.
- Model B: Supports advanced NLP tasks like summarization and translation.
"""
# Render the HTML in Streamlit
st.markdown(html_code, unsafe_allow_html=True)