Spaces:
Runtime error
Runtime error
fix: added auth environment variable
Browse files
InnovationHub/llm/chain.py
CHANGED
@@ -12,7 +12,7 @@ from langchain.chains.conversation.memory import ConversationalBufferWindowMemor
|
|
12 |
from EdgeGPT import Chatbot
|
13 |
|
14 |
db_path = 'data/s-class-manual'
|
15 |
-
cookie_path =
|
16 |
embeddings = HuggingFaceEmbeddings()
|
17 |
|
18 |
|
|
|
12 |
from EdgeGPT import Chatbot
|
13 |
|
14 |
db_path = 'data/s-class-manual'
|
15 |
+
cookie_path = os.environ['COOKIES']
|
16 |
embeddings = HuggingFaceEmbeddings()
|
17 |
|
18 |
|