Shubham89's picture
Update app.py
358293d
raw
history blame
529 Bytes
import gradio
from llama_index import SimpleDirectoryReader, GPTListIndex, readers, GPTSimpleVectorIndex, LLMPredictor, PromptHelper, ServiceContext
openai.api_key = "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"
def gradio_ask_ai(user_input):
index = GPTSimpleVectorIndex.load_from_disk('index.json')
query = user_input
response = index.query(query)
return response.response
demo = gradio.Interface(fn=gradio_ask_ai, inputs = "text", outputs = "text", title = "Meshwork_bot")
demo.launch(inline=False)