Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ documents = [
|
|
13 |
]
|
14 |
|
15 |
# Initialize models and FAISS index
|
16 |
-
embedder = SentenceTransformer('all-MiniLM-L6-v2')
|
17 |
generator = pipeline('text2text-generation', model='google/flan-t5-base')
|
18 |
|
19 |
# Process documents and create FAISS index
|
@@ -30,7 +30,7 @@ def answer_question(question):
|
|
30 |
|
31 |
# Generate answer
|
32 |
prompt = f"Answer based on context: {context}\nQuestion: {question}\nAnswer:"
|
33 |
-
return generator(prompt, max_length=
|
34 |
|
35 |
# Gradio interface
|
36 |
interface = gr.Interface(
|
|
|
13 |
]
|
14 |
|
15 |
# Initialize models and FAISS index
|
16 |
+
embedder = SentenceTransformer('all-MiniLM-L6-v2') #converts text to vectors
|
17 |
generator = pipeline('text2text-generation', model='google/flan-t5-base')
|
18 |
|
19 |
# Process documents and create FAISS index
|
|
|
30 |
|
31 |
# Generate answer
|
32 |
prompt = f"Answer based on context: {context}\nQuestion: {question}\nAnswer:"
|
33 |
+
return generator(prompt, max_length=1000)[0]['generated_text']
|
34 |
|
35 |
# Gradio interface
|
36 |
interface = gr.Interface(
|