Spaces:
Runtime error
Runtime error
| 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") |