Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
safzanpirani committed Mar 2, 2024
1 parent 57c5168 commit 17a2cf1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
def set_page_header():
st.header("πŸ“š Offline, Open-Source RAG", anchor=False)
st.caption(
"Ingest files for retrieval augmented generation (RAG) with open-source Large Language Models (LLMs), all without 3rd parties or sensitive data leaving your network."
"Upload files for retrieval augmented generation (RAG) with open-source Large Language Models (LLMs)."
)
12 changes: 6 additions & 6 deletions components/tabs/file_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@


def file_upload():
st.title("Directly import your files")
st.caption("Convert your files to embeddings for utilization during chat")
st.title("Import your documents.")
st.caption("Upload your documents to intelligently talk to them.")
st.write("")

with st.expander("πŸ’»   **Local Files**", expanded=False):
local_files()

with st.expander("πŸ—‚οΈ  **GitHub Repo**", expanded=False):
github_repo()
# with st.expander("πŸ—‚οΈ  **GitHub Repo**", expanded=False):
# github_repo()

with st.expander("🌐   **Website**", expanded=False):
website()
# with st.expander("🌐   **Website**", expanded=False):
# website()
2 changes: 1 addition & 1 deletion components/tabs/local_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,4 @@ def local_files():
if error is not None:
st.exception(error)
else:
st.write("Your files are ready. Let's chat! 😎")
st.write("Your files are ready. Let's chat!")

0 comments on commit 17a2cf1

Please sign in to comment.