You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ The conversation is kept in memory by a buffered sliding window memory (top 4 mo
41
41
## Getting started
42
42
43
43
- Select the model+embedding combination you want to use
44
-
- If using OpenAI, enter your API Key ([Open AI](https://platform.openai.com/account/api-keys)~~ or [Huggingface](https://huggingface.co/docs/hub/security-tokens))~~.
44
+
- If using gpt3.5-turbo, gpt4 or gpt4-turbo, enter your API Key ([Open AI](https://platform.openai.com/account/api-keys)).
45
45
- Upload a scientific article as a PDF document. You will see a spinner or loading indicator while the processing is in progress.
46
46
- Once the spinner disappears, you can proceed to ask your questions
47
47
@@ -77,6 +77,14 @@ Error: `streamlit: Your system has an unsupported version of sqlite3. Chroma req
77
77
Here the [solution on Linux](https://stackoverflow.com/questions/76958817/streamlit-your-system-has-an-unsupported-version-of-sqlite3-chroma-requires-sq).
78
78
For more information, see the [details](https://docs.trychroma.com/troubleshooting#sqlite) on Chroma website.
79
79
80
+
## Disclaimer on Data, Security, and Privacy ⚠️
81
+
82
+
Please read carefully:
83
+
84
+
- Avoid uploading sensitive data. We temporarily store text from the uploaded PDF documents only for processing your request, and we disclaim any responsibility for subsequent use or handling of the submitted data by third-party LLMs.
85
+
- Mistral and Zephyr are FREE to use and do not require any API, but as we leverage the free API entrypoint, there is no guarantee that all requests will go through. Use at your own risk.
86
+
- We do not assume responsibility for how the data is utilized by the LLM end-points API.
api_key=st.text_input('OpenAI API Key', type="password")
244
251
st.markdown("Get it [here](https://platform.openai.com/account/api-keys)")
@@ -297,9 +304,9 @@ def play_old_messages():
297
304
help="Number of chunks to consider when answering a question",
298
305
disabled=notuploaded_file)
299
306
300
-
st.session_state['ner_processing'] =st.checkbox("Named Entities Recognition (NER) processing on LLM response")
307
+
st.session_state['ner_processing'] =st.checkbox("Identify materials and properties.")
301
308
st.markdown(
302
-
'**NER on LLM responses**: The responses from the LLMs are post-processed to extract <span style="color:orange">physical quantities, measurements</span> and <span style="color:green">materials</span> mentions.',
309
+
'The LLM responses undergo post-processing to extract <span style="color:orange">physical quantities, measurements</span>, and <span style="color:green">materials</span> mentions.',
0 commit comments