Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rohan13
/
coursera-qa-bot
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aad01e3
coursera-qa-bot
/
main.py
rohan13
removing agent implementation to optimize speed
aad01e3
almost 2 years ago
raw
Copy download link
history
blame
188 Bytes
from
utils
import
get_search_index, get_qa_chain, generate_answer
def
index
():
get_search_index()
return
True
def
run
(
question
):
index()
return
generate_answer(question)