Spaces:
Running
Running
ryanrwatkins
commited on
Commit
•
a4c479c
1
Parent(s):
9a1c32e
Update notes.md
Browse files
notes.md
CHANGED
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
with open("foo.pkl", 'rb') as f:
|
2 |
new_docsearch = pickle.load(f)
|
3 |
|
@@ -10,9 +21,3 @@ from langchain.llms import OpenAI
|
|
10 |
chain = load_qa_chain(OpenAI(temperature=1.2), chain_type="stuff")
|
11 |
resp = chain.run(input_documents=docs, question=query)
|
12 |
print(resp)
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
Template for app from:
|
17 |
-
https://huggingface.co/spaces/anzorq/chatgpt-demo
|
18 |
-
https://blog.devgenius.io/chat-with-document-s-using-openai-chatgpt-api-and-text-embedding-6a0ce3dc8bc8
|
|
|
1 |
+
|
2 |
+
|
3 |
+
|
4 |
+
Templates for app from:
|
5 |
+
https://huggingface.co/spaces/anzorq/chatgpt-demo
|
6 |
+
https://blog.devgenius.io/chat-with-document-s-using-openai-chatgpt-api-and-text-embedding-6a0ce3dc8bc8
|
7 |
+
https://github.com/hwchase17/chat-langchain-notion/blob/master/ingest_data.py
|
8 |
+
|
9 |
+
|
10 |
+
IDEAS:
|
11 |
+
|
12 |
with open("foo.pkl", 'rb') as f:
|
13 |
new_docsearch = pickle.load(f)
|
14 |
|
|
|
21 |
chain = load_qa_chain(OpenAI(temperature=1.2), chain_type="stuff")
|
22 |
resp = chain.run(input_documents=docs, question=query)
|
23 |
print(resp)
|
|
|
|
|
|
|
|
|
|
|
|