Rename app.py to main.py
Browse files- app.py → main.py +2 -2
app.py → main.py
RENAMED
|
@@ -161,7 +161,7 @@ def query_llm(index, text_data, text_sources, query):
|
|
| 161 |
|
| 162 |
|
| 163 |
|
| 164 |
-
query = "Where is Nigeria located"
|
| 165 |
|
| 166 |
async def main():
|
| 167 |
urls = ["https://en.wikipedia.org/wiki/Nigeria", "https://en.wikipedia.org/wiki/Ghana"]
|
|
@@ -177,4 +177,4 @@ async def main():
|
|
| 177 |
print(response)
|
| 178 |
|
| 179 |
# Run the async function
|
| 180 |
-
asyncio.run(main())
|
|
|
|
| 161 |
|
| 162 |
|
| 163 |
|
| 164 |
+
"""query = "Where is Nigeria located"
|
| 165 |
|
| 166 |
async def main():
|
| 167 |
urls = ["https://en.wikipedia.org/wiki/Nigeria", "https://en.wikipedia.org/wiki/Ghana"]
|
|
|
|
| 177 |
print(response)
|
| 178 |
|
| 179 |
# Run the async function
|
| 180 |
+
asyncio.run(main())"""
|