Streamlit - python package for AI engineers

Engineer working in Cerebras. Latest work is Cerebras Inference. I love writing code in React, TypeScript, C++, Python. I spend most of my work hours tinkering with code.
Streamlit is a python package that is useful for AI engineers to visualize data.
pip install streamlit
The following code snippet shows a line chart from data.
import streamlit as st
import pandas as pd
st.write("""
# My first app
Hello *world!*
""")
df = pd.read_csv("my_data.csv")
st.line_chart(df)
Cerebras uses streamlit for their inference examples. The example in the link is a simple agent that is based out of LangChain. It has some “real world” use case for streamlit.
