File size: 325 Bytes
3370a4e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st

st.set_page_config(
    page_title="Home"
)

st.title("Large Language Models Showcase")
st.markdown(
    """
    This proof-of-concept web application aims to showcase the text generation capabilities
    of ChatGPT together with prompt engineering techniques.
    """
)
st.image("images/Chatgpt.jpg")