gauri-sharan commited on
Commit
1af4a96
·
verified ·
1 Parent(s): ecba6a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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=200)[0]['generated_text']
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(