Spaces:
Sleeping
Sleeping
trainning data (kind of) and suggested query
Browse files
app.py
CHANGED
@@ -8,6 +8,11 @@ big_text = """
|
|
8 |
</div>
|
9 |
"""
|
10 |
st.markdown(big_text, unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
if 'is_initialized' not in st.session_state:
|
13 |
st.session_state['is_initialized'] = True
|
|
|
8 |
</div>
|
9 |
"""
|
10 |
st.markdown(big_text, unsafe_allow_html=True)
|
11 |
+
st.markdown(
|
12 |
+
f'<a href="https://ikmtechnology.github.io/ikmtechnology/questions_answers.json" target="_blank">question and answer used to fine tune the LLM</a>',
|
13 |
+
unsafe_allow_html=True)
|
14 |
+
st.markdown("sample queries for above file: <br/> What does the Angel of Death say to you? What is one of the best teachers in all of life? What does a wise person say?",unsafe_allow_html=True)
|
15 |
+
|
16 |
|
17 |
if 'is_initialized' not in st.session_state:
|
18 |
st.session_state['is_initialized'] = True
|