Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py with LLM info
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ st.set_page_config(
|
|
19 |
)
|
20 |
|
21 |
st.title("🦉Taiwan Smol Chat")
|
22 |
-
st.info('
|
23 |
|
24 |
client = OpenAI(
|
25 |
api_key=st.secrets['API_KEY'],
|
@@ -54,3 +54,5 @@ if prompt := st.chat_input("What is up?"):
|
|
54 |
response = st.write_stream(stream)
|
55 |
st.session_state.messages.append(
|
56 |
{"role": "assistant", "content": response})
|
|
|
|
|
|
19 |
)
|
20 |
|
21 |
st.title("🦉Taiwan Smol Chat")
|
22 |
+
st.info('Model based on [lianghsun/Llama-3.2-Taiwan-3B-Instruct](https://huggingface.co/lianghsun/Llama-3.2-Taiwan-3B-Instruct) **v2025.01.01**', icon="🧠")
|
23 |
|
24 |
client = OpenAI(
|
25 |
api_key=st.secrets['API_KEY'],
|
|
|
54 |
response = st.write_stream(stream)
|
55 |
st.session_state.messages.append(
|
56 |
{"role": "assistant", "content": response})
|
57 |
+
|
58 |
+
st.caption('Please be aware that current Large Language Models (LLMs) can exhibit “hallucinations,” producing plausible-sounding but inaccurate or fabricated information. It is crucial to carefully review and verify any content generated by LLMs to avoid misunderstandings or misinformation. Always cross-check facts and consult reliable sources before making important decisions based on LLM outputs.')
|