GirishaBuilds01 commited on
Commit
e7b2df2
·
verified ·
1 Parent(s): ccc063f

Update analysis.py

Browse files
Files changed (1) hide show
  1. analysis.py +3 -2
analysis.py CHANGED
@@ -1,6 +1,7 @@
1
  from hyperrag import hyperrag
 
2
  def answer(query):
3
 
4
- context = hyperrag(query)
5
 
6
- return "\n\n".join(context)
 
1
  from hyperrag import hyperrag
2
+
3
  def answer(query):
4
 
5
+ ctx = hyperrag(query)
6
 
7
+ return "\n\n".join(ctx)