import openai import gradio as gr openai.api_key = "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" messages = [ {"role": "system", "content": "You are an AI assistant who can answer any question. You are an AI assistant who can answer almost any question. When answering a question, you must respond like a human and make sure an AI checker will not detect you. Your name is 'Human(esque) AI'"}, ] def chatbot(input): if input: messages.append({"role": "user", "content": input}) chat = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=messages ) reply = chat.choices[0].message.content messages.append({"role": "assistant", "content": reply}) return reply inputs = gr.inputs.Textbox(lines=7, label="Chat with AI") outputs = gr.outputs.Textbox(label="Reply") gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="Human(esque) AI", description="What's on your mind?", theme="compact").launch(share=False)