The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

--import os import openai

import gradio as gr

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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"

start_sequence = "\nVenu:" restart_sequence = "\nHuman: "

prompt ="The following is a conversation with Venu. The assistant is helpful, creative,clever, and very friendly. \n\nHuman: Hello, who are you?\nVenu: I am Venu . How can I help you "
"today?\nHuman: "

def openai_create(prompt): response = openai.Completion.create( model="text-davinci-003", prompt=prompt, temperature=0.9, max_tokens=150, top_p=1, frequency_penalty=2, presence_penalty= 2, stop=[" Human:", " AI:"] )

return response.choices[0].text

def chatgpt_clone(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("""

Venu

""") chatbot = gr.Chatbot() message = gr.Textbox(placeholder=prompt) state = gr.State() submit = gr.Button("Enter") submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot, state])

block.launch(share=True)

license: afl-3.0

Downloads last month
8