Spaces:
Runtime error
Fix requirements (#27)
Browse files* refactor: separate app components
* Add multiple pages (#22)
* Update README.md
* Change names of pages
* Disable pylint rules
* refactor: separate app components
* Change names of pages
* Disable pylint rules
* Update deprecated model
* Main (#26)
* v. 0.0.1 (#23)
* refactor: separate app components
* Add multiple pages (#22)
* Update README.md
* Rename 06_Creativity.PNG to 06_Creativity.png
* Rename 07_Delete_Collection.PNG to 07_Delete_Collection.png
* Update main (#25)
* refactor: separate app components
* Add multiple pages (#22)
* Update README.md
* Change names of pages
* Disable pylint rules
* refactor: separate app components
* Change names of pages
* Disable pylint rules
* Update deprecated model
* Update requirements.txt
* Update wk_flow_requirements.txt
* Update builder
* Update requirements.txt
* Update wk_flow_requirements.txt
* Update wk_flow_requirements.txt
- gnosis/builder.py +1 -1
- requirements.txt +3 -2
- wk_flow_requirements.txt +2 -1
|
@@ -1,6 +1,6 @@
|
|
| 1 |
"""Module for building the Langchain Agent"""
|
| 2 |
import streamlit as st
|
| 3 |
-
from
|
| 4 |
from gnosis.agent import PDFExplainer
|
| 5 |
|
| 6 |
|
|
|
|
| 1 |
"""Module for building the Langchain Agent"""
|
| 2 |
import streamlit as st
|
| 3 |
+
from langchain_openai import ChatOpenAI
|
| 4 |
from gnosis.agent import PDFExplainer
|
| 5 |
|
| 6 |
|
|
@@ -1,9 +1,10 @@
|
|
| 1 |
openai
|
| 2 |
tiktoken
|
| 3 |
langchain
|
|
|
|
| 4 |
pymupdf
|
| 5 |
pypdf
|
| 6 |
wikipedia
|
| 7 |
-
chromadb
|
| 8 |
sentence_transformers
|
| 9 |
-
streamlit
|
|
|
|
| 1 |
openai
|
| 2 |
tiktoken
|
| 3 |
langchain
|
| 4 |
+
langchain_openai
|
| 5 |
pymupdf
|
| 6 |
pypdf
|
| 7 |
wikipedia
|
| 8 |
+
chromadb
|
| 9 |
sentence_transformers
|
| 10 |
+
streamlit
|
|
@@ -4,4 +4,5 @@ openai
|
|
| 4 |
tiktoken
|
| 5 |
pylint
|
| 6 |
langchain
|
| 7 |
-
|
|
|
|
|
|
| 4 |
tiktoken
|
| 5 |
pylint
|
| 6 |
langchain
|
| 7 |
+
langchain_openai
|
| 8 |
+
chromadb
|