File size: 669 Bytes
3370a4e
 
 
 
 
 
 
 
 
 
 
74202db
 
 
 
 
3370a4e
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.
    ### Tutorial
    1. Go to the Prompt-Engineering Page
    2. Insert your OpenAI API key to use ChatGPT. You can find it [here](https://platform.openai.com/api-keys)
    3. Use the selection options to get access to various prompt-engineering techniques and examples.
    4. Copy and paste the examples into the chatbox to see how it works.
    """
)
st.image("images/Chatgpt.jpg")