Spaces:
Runtime error
Runtime error
| from langchain.embeddings.openai import OpenAIEmbeddings | |
| from langchain.vectorstores import Chroma | |
| from langchain.text_splitter import CharacterTextSplitter | |
| from langchain.chains.question_answering import load_qa_chain | |
| from langchain.llms import OpenAI | |
| import os | |
| with open("guide1.txt") as f: | |
| hitchhikersguide = f.read() | |
| text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0, separator = "\n") | |
| texts = text_splitter.split_text(hitchhikersguide) | |
| embeddings = OpenAIEmbeddings() | |
| docsearch = Chroma.from_texts(texts, embeddings, metadatas=[{"source": str(i)} for i in range(len(texts))]).as_retriever() | |
| chain = load_qa_chain(OpenAI(temperature=0), chain_type="stuff") | |
| def make_inference(query): | |
| docs = docsearch.get_relevant_documents(query) | |
| return(chain.run(input_documents=docs, question=query)) | |
| if __name__ == "__main__": | |
| # make a gradio interface | |
| import gradio as gr | |
| demo = gr.Interface(fn = make_inference, inputs = "text", outputs = "text", | |
| title="Answer to the question about the Hitchhiker's Guide to the Galaxy", | |
| description="This is a demo of the LangChain library. It uses the Hitchhiker's Guide to the Galaxy as a corpus and OpenAI's GPT model to answer questions about it.",) | |
| demo.launch() | |