nikhedward commited on
Commit
2934e58
1 Parent(s): 4150c99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  title = "Q&A using Semantic Search 🔍"
2
  desc = """
3
  <p style='text-align: center; color: #FF7F50'>This is a Question & Answering app that uses semantic search to retrieve results. Semantic search means understanding the intent behind the query and representing the “knowledge in a way suitable for meaningful retrieval”.
 
1
+ import subprocess
2
+ subprocess.run(["python", "-m", "ensurepip", "--upgrade"], check=True)
3
+
4
  title = "Q&A using Semantic Search 🔍"
5
  desc = """
6
  <p style='text-align: center; color: #FF7F50'>This is a Question & Answering app that uses semantic search to retrieve results. Semantic search means understanding the intent behind the query and representing the “knowledge in a way suitable for meaningful retrieval”.