Kaludi commited on
Commit
7960b73
Β·
1 Parent(s): e4e7ff2

Upload 6 files

Browse files
Files changed (2) hide show
  1. VirtualBrainGPT.py +1 -1
  2. pages/Brain_Search.py +1 -1
VirtualBrainGPT.py CHANGED
@@ -27,7 +27,7 @@ st.markdown(
27
  In the 'Brain Entry' section, users can create a new journal entry or edit an existing one by choosing a date using the date picker. Once you have completed your entry, click 'Submit' and it will be saved or updated to the brain_journal.txt file in the brain folder.
28
 
29
  ### Brain Search
30
- The 'Brain Search' section of the application unlocks the full potential of your digital journal. Here, you can ask any questions related to your journal entries, and the combination of OpenAI's Embeddings and Langchain will provide accurate responses in seconds, no matter how long the entry or document may be. The virtual brain can help in all aspects of a user's life, enabling users to easily recall specific information, even if they can't remember it themselves. Users also have an option to select other file types if they wish to upload their own file, the current file types include TXT and PDF files, which can be selected in the file type dropdown option.
31
 
32
  ### Tools Used
33
  - OpenAI [Embeddings](https://platform.openai.com/docs/guides/embeddings)
 
27
  In the 'Brain Entry' section, users can create a new journal entry or edit an existing one by choosing a date using the date picker. Once you have completed your entry, click 'Submit' and it will be saved or updated to the brain_journal.txt file in the brain folder.
28
 
29
  ### Brain Search
30
+ The 'Brain Search' section of the application unlocks the full potential of your digital journal. Here, you can ask any questions related to your journal entries, and the combination of OpenAI's Embeddings and Langchain will provide accurate responses in seconds, no matter how long the entry or document may be. The virtual brain can help in all aspects of a user's life, enabling users to easily recall specific information, even if they can't remember it themselves. Users also have an option to select other file types if they wish to upload their own file, the current file types include TXT and PDF files, which can be selected in the file type dropdown option. Along with the response, you will also get information about the amount of tokens that were used and the Total Cost of the query.
31
 
32
  ### Tools Used
33
  - OpenAI [Embeddings](https://platform.openai.com/docs/guides/embeddings)
pages/Brain_Search.py CHANGED
@@ -38,7 +38,7 @@ def main():
38
  """
39
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
40
  st.title("Digital Brain Journal Search πŸ”")
41
- st.write("Ask any questions about all the journal entries with OpenAI's Embeddings and Langchain. The virtual brain keeps track of everything in a user's life. If you have another TXT or PDF file you'd like to search for answers, click on the dropdown and select eithter TXT or PDF option in file type.")
42
 
43
  # Add API key input
44
  api_key = st.text_input("Enter your OpenAI API key:", type="password")
 
38
  """
39
  st.markdown(hide_streamlit_style, unsafe_allow_html=True)
40
  st.title("Digital Brain Journal Search πŸ”")
41
+ st.write("Ask any questions about any of your journal entries with OpenAI's Embeddings and Langchain. The virtual brain keeps track of everything in a user's life. If you have another TXT or PDF file you'd like to search for answers, click on the dropdown and select eithter TXT or PDF option in file type. Along with the response, you will also get information about the amount of tokens that were used and the Total Cost of the query.")
42
 
43
  # Add API key input
44
  api_key = st.text_input("Enter your OpenAI API key:", type="password")