Suat ATAN
first commit
9177215
raw
history blame
1.46 kB
# flake8: noqa
import streamlit as st
def faq():
st.markdown(
"""
# FAQ
## How does ReportIO work?
When you upload a document, it will be divided into smaller chunks
and stored in a special type of database called a vector index
that allows for semantic search and retrieval.
When you ask a question, ReportIO will search through the
document chunks and find the most relevant ones using the vector index.
Then, it will use GPT3 to generate a final answer.
## Is my data safe?
Yes, your data is safe. ReportIO does not store your documents or
questions. All uploaded data is deleted after you close the browser tab.
## Why does it take so long to index my document?
If you are using a free OpenAI API key, it will take a while to index
your document. This is because the free API key has strict [rate limits](https://platform.openai.com/docs/guides/rate-limits/overview).
To speed up the indexing process, you can use a paid API key.
## What do the numbers mean under each source?
For a PDF document, you will see a citation number like this: 3-12.
The first number is the page number and the second number is
the chunk number on that page. For DOCS and TXT documents,
the first number is set to 1 and the second number is the chunk number.
## Are the answers 100% accurate?
But for most use cases, ReportIO is very accurate and can answer
most questions. Always check with the sources to make sure that the answers
are correct.
"""
)