File size: 1,400 Bytes
1ee2227
 
7a4a318
1ee2227
 
 
 
 
 
 
 
 
 
7a4a318
1ee2227
 
 
 
 
 
 
 
7a4a318
1ee2227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7a4a318
1ee2227
 
 
 
 
 
78c0796
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
52
53
54
55
56
57
58
59
60
import os
#pip3 install openai
import openai as oai
#pip3 install gradio
import gradio as gr

from data import OPENAI_API_KEY
#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
OPEN_AI_KEY = OPENAI_API_KEY

oai.api_key = OPEN_AI_KEY

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

prompt = "Feel free to ask any question to this bot, it can find you many solutions.\n\n Tell me a story about human beings... "

def openai_create(prompt):

    response = oai.Completion.create(
    model="text-davinci-003",
    prompt=prompt,
    temperature=0.9,
    max_tokens=150,
    top_p=0,
    frequency_penalty=0,
    presence_penalty=0.6,
    stop=[" Human:", " AI:"]
    )

    return response.choices[0].text



def cjrSmartBot(input, history):
    history = history or []
    s = list(sum(history, ()))
    s.append(input)
    inp = ' '.join(s)
    output = openai_create(inp)
    history.append((input, output))
    return history, history


block = gr.Blocks()


with block:
    gr.Markdown("""<h1><center>CarlosJR Smart Bot</center></h1>""")
    chatbot = gr.Chatbot()
    message = gr.Textbox(placeholder=prompt)
    state = gr.State()
    submit = gr.Button("SEND")
    submit.click(cjrSmartBot, inputs=[message, state], outputs=[chatbot, state])

block.launch()