Skip to main content

Command Palette

Search for a command to run...

Streamlit - python package for AI engineers

Published
1 min readView as Markdown
Streamlit - python package for AI engineers
V

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.

10 views

More from this blog

V

Vijay Thirugnanam

38 posts

Short technical tips. Mostly stuff that I can refer to later.