Tonic Cloudfaith commited on
Commit
74663dc
1 Parent(s): 57fdfd5

added citation link to github (#1)

Browse files

- added citation link to github (c9dee3ce229b653e12e98c0aaacc96b87233d6e0)


Co-authored-by: Taylor Ennen <Cloudfaith@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -98,4 +98,7 @@ if st.button("Generate Lesson Plan") and api_key:
98
 
99
  # Extract and display the lesson plan
100
  assistant_reply = lesson_plan_response['choices'][0]['message']['content']
101
- lesson_plan=st.text(assistant_reply.strip())
 
 
 
 
98
 
99
  # Extract and display the lesson plan
100
  assistant_reply = lesson_plan_response['choices'][0]['message']['content']
101
+ lesson_plan=st.text(assistant_reply.strip())
102
+
103
+ # Citation for the GitHub repo
104
+ st.markdown("<sub>This app was created by [Taylor Ennen](https://github.com/taylor-ennen/GPT-Streamlit-MVP)</sub>", unsafe_allow_html=True)