Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ st.title('Document Q&A')
|
|
15 |
st.write("Please upload a PDF file and create a vector store before asking questions.")
|
16 |
|
17 |
def get_chain():
|
18 |
-
model = ChatGoogleGenerativeAI(model='gemini-
|
19 |
prompt_ = """
|
20 |
Answer the questions as detailed as possible from the provided context, make sure to provide all the
|
21 |
details, if the answer is not in the provided context just say, "answer is not available in context",
|
|
|
15 |
st.write("Please upload a PDF file and create a vector store before asking questions.")
|
16 |
|
17 |
def get_chain():
|
18 |
+
model = ChatGoogleGenerativeAI(model='gemini-2.0-flash', temperature=0.1)
|
19 |
prompt_ = """
|
20 |
Answer the questions as detailed as possible from the provided context, make sure to provide all the
|
21 |
details, if the answer is not in the provided context just say, "answer is not available in context",
|