File size: 1,543 Bytes
b769082
 
 
fd0a8ba
b769082
 
 
 
 
 
 
 
 
 
 
2f5b5df
b769082
 
 
b97ad3f
b769082
 
 
 
 
 
 
 
 
589fa4a
b769082
 
 
 
 
 
 
 
 
 
5b836ff
b769082
 
 
 
2083ef7
b769082
 
589fa4a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
#import openai
import gradio as gr
from llama_index import SimpleDirectoryReader, GPTListIndex, readers, GPTSimpleVectorIndex, LLMPredictor, PromptHelper, ServiceContext

#if you have OpenAI API key as an environment variable, enable the below
#openai.api_key = os.getenv("OPENAI_API_KEY")

#if you have OpenAI API key as a string, enable the below
#openai.api_key = "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"
os.environ["OPENAI_API_KEY"] = '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'

start_sequence = "\nAI:"
restart_sequence = "\nHuman: "

prompt = "The following is a conversation with an AI assistant. The assistant is helpful, creative, clever, and very friendly.\n\nHuman: "


def gradio_ask_ai(user_input):
    index = GPTSimpleVectorIndex.load_from_disk('index.json')
    query = user_input
    response = index.query(query)
    return response.response

def chatgpt_clone(input, history):
    history = history or []
    s = list(sum(history, ()))
    s.append(input)
    inp = ' '.join(s)
    #output = openai_create(inp) gradio_ask_ai
    
    output = gradio_ask_ai(inp)
    #print("out",type(output))
    history.append((input, output))
    return history, history

block = gr.Blocks()


with block:
    gr.Markdown("""<h1><center>Meshworks bot</center></h1>
    """)
    chatbot = gr.Chatbot()
    message = gr.Textbox(placeholder=prompt)
    state = gr.State()
    submit = gr.Button("Submit")
    submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot, state])

block.launch()