Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ embeddings = HuggingFaceEmbeddings(
|
|
23 |
)
|
24 |
|
25 |
# load IPCC database
|
26 |
-
db = FAISS.load_local("
|
27 |
|
28 |
|
29 |
|
@@ -48,8 +48,8 @@ def generate_response(input_text):
|
|
48 |
given question based solely on the provided search results (hyperlink and source). You must \
|
49 |
only use information from the provided search results. Use an unbiased and \
|
50 |
journalistic tone. Combine search results together into a coherent answer. Do not \
|
51 |
-
repeat text. Only use
|
52 |
-
relevant results that answer the question accurately.
|
53 |
in a section named "source".
|
54 |
|
55 |
After the "source" section, add a "highlight" section\
|
@@ -69,11 +69,11 @@ def generate_response(input_text):
|
|
69 |
|
70 |
Anything between the following `sources` html blocks is the source and hyperlink you should use and list them into a source section\
|
71 |
<sources>
|
72 |
-
[{source1} page {page1}](https://www.ipcc.ch/report/ar6/
|
73 |
-
[{source2} page {page2}](https://www.ipcc.ch/report/ar6/
|
74 |
-
[{source3} page {page3}](https://www.ipcc.ch/report/ar6/wg3/downloads/report/{source3}.pdf#page={page3})
|
75 |
-
[{source4} page {page4}](https://www.ipcc.ch/report/ar6/
|
76 |
-
[{source5} page {page5}](https://www.ipcc.ch/report/ar6/
|
77 |
<sources/>
|
78 |
|
79 |
REMEMBER: If there is no relevant information within the context, just say "Hmm, I'm \
|
@@ -87,14 +87,15 @@ def generate_response(input_text):
|
|
87 |
climate_PROMPT = PromptTemplate(input_variables=["question", "context"],
|
88 |
partial_variables={"source1":json1["source"], "source2":json2["source"],
|
89 |
"source3":json3["source"],"source4":json4["source"],"source5":json5["source"],"page1":json1["page"],
|
90 |
-
"page2":json2["page"],"page3":json3["page"],"page4":json4["page"],"page5":json5["page"]
|
|
|
91 |
template=climate_TEMPLATE, )
|
92 |
|
93 |
#climate_PROMPT.partial(source = docs[0].metadata)
|
94 |
|
95 |
llm = ChatOpenAI(
|
96 |
model_name="gpt-3.5-turbo-16k",
|
97 |
-
temperature=0.
|
98 |
max_tokens=2000,
|
99 |
openai_api_key=openai_api_key
|
100 |
)
|
|
|
23 |
)
|
24 |
|
25 |
# load IPCC database
|
26 |
+
db = FAISS.load_local("IPCC_index_e5_1000_all", embeddings)
|
27 |
|
28 |
|
29 |
|
|
|
48 |
given question based solely on the provided search results (hyperlink and source). You must \
|
49 |
only use information from the provided search results. Use an unbiased and \
|
50 |
journalistic tone. Combine search results together into a coherent answer. Do not \
|
51 |
+
repeat text. Only use \
|
52 |
+
relevant results that answer the question accurately. list these sources at the end of your answer \
|
53 |
in a section named "source".
|
54 |
|
55 |
After the "source" section, add a "highlight" section\
|
|
|
69 |
|
70 |
Anything between the following `sources` html blocks is the source and hyperlink you should use and list them into a source section\
|
71 |
<sources>
|
72 |
+
[{source1} page {page1}](https://www.ipcc.ch/report/ar6/{wg1}/downloads/report/{source1}.pdf#page={page1})
|
73 |
+
[{source2} page {page2}](https://www.ipcc.ch/report/ar6/{wg2}/downloads/report/{source2}.pdf#page={page2})
|
74 |
+
[{source3} page {page3}](https://www.ipcc.ch/report/ar6/{wg3}/downloads/report/{source3}.pdf#page={page3})
|
75 |
+
[{source4} page {page4}](https://www.ipcc.ch/report/ar6/{wg4}/downloads/report/{source4}.pdf#page={page4})
|
76 |
+
[{source5} page {page5}](https://www.ipcc.ch/report/ar6/{wg5}/downloads/report/{source5}.pdf#page={page5})
|
77 |
<sources/>
|
78 |
|
79 |
REMEMBER: If there is no relevant information within the context, just say "Hmm, I'm \
|
|
|
87 |
climate_PROMPT = PromptTemplate(input_variables=["question", "context"],
|
88 |
partial_variables={"source1":json1["source"], "source2":json2["source"],
|
89 |
"source3":json3["source"],"source4":json4["source"],"source5":json5["source"],"page1":json1["page"],
|
90 |
+
"page2":json2["page"],"page3":json3["page"],"page4":json4["page"],"page5":json5["page"],"wg1":json1["wg"],
|
91 |
+
"wg2":json2["wg"],"wg3":json3["wg"],"wg4":json4["wg"],"wg5":json5["wg"]},
|
92 |
template=climate_TEMPLATE, )
|
93 |
|
94 |
#climate_PROMPT.partial(source = docs[0].metadata)
|
95 |
|
96 |
llm = ChatOpenAI(
|
97 |
model_name="gpt-3.5-turbo-16k",
|
98 |
+
temperature=0.05,
|
99 |
max_tokens=2000,
|
100 |
openai_api_key=openai_api_key
|
101 |
)
|