Blane187 commited on
Commit
5024470
·
verified ·
1 Parent(s): 1453fd0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -51
app.py CHANGED
@@ -1,54 +1,40 @@
1
- import os
2
  import openai
3
  import gradio as gr
 
4
 
5
- #if you have OpenAI API key as an environment variable, enable the below
6
- openai.api_key = os.getenv("OPENAI_API_KEY")
7
-
8
-
9
-
10
- start_sequence = "\nAI:"
11
- restart_sequence = "\nHuman: "
12
-
13
- prompt = "The following is a conversation with an AI assistant. The assistant is helpful, creative, clever, and very friendly.\n\nHuman: Hello, who are you?\nAI: I am an AI created by OpenAI. How can I help you today?\nHuman: "
14
-
15
- def openai_create(prompt):
16
-
17
- response = openai.Completion.create(
18
- model="text-davinci-003",
19
- prompt=prompt,
20
- temperature=0.9,
21
- max_tokens=150,
22
- top_p=1,
23
- frequency_penalty=0,
24
- presence_penalty=0.6,
25
- stop=[" Human:", " AI:"]
26
- )
27
-
28
- return response.choices[0].text
29
-
30
-
31
-
32
- def chatgpt_clone(input, history):
33
- history = history or []
34
- s = list(sum(history, ()))
35
- s.append(input)
36
- inp = ' '.join(s)
37
- output = openai_create(inp)
38
- history.append((input, output))
39
- return history, history
40
-
41
-
42
- block = gr.Blocks()
43
-
44
-
45
- with block:
46
- gr.Markdown("""<h1><center>Build Yo'own ChatGPT with OpenAI API & Gradio</center></h1>
47
- """)
48
- chatbot = gr.Chatbot()
49
- message = gr.Textbox(placeholder=prompt)
50
- state = gr.State()
51
- submit = gr.Button("SEND")
52
- submit.click(chatgpt_clone, inputs=[message, state], outputs=[chatbot, state])
53
-
54
- block.launch(debug = True)
 
 
1
  import openai
2
  import gradio as gr
3
+ import os
4
 
5
+ # Set OpenAI API key from environment variable
6
+ openai.api_key = os.getenv(OPENAI_API_KEY)
7
+
8
+ # Define a function to interact with OpenAI's ChatGPT
9
+ def chat_with_openai(input_text):
10
+ try:
11
+ response = openai.Completion.create(
12
+ engine="gpt-4", # Use the model you want (e.g., 'gpt-3.5-turbo', 'gpt-4')
13
+ prompt=input_text,
14
+ max_tokens=150,
15
+ n=1,
16
+ stop=None,
17
+ temperature=0.7,
18
+ )
19
+ answer = response.choices[0].text.strip()
20
+ return answer
21
+ except Exception as e:
22
+ return str(e)
23
+
24
+ # Define the Gradio interface
25
+ with gr.Blocks() as ui:
26
+ gr.Markdown("# Chatbot with OpenAI API")
27
+
28
+ chatbot = gr.Chatbot(label="OpenAI Chatbot")
29
+ msg = gr.Textbox(label="Enter your message here:")
30
+ submit_btn = gr.Button("Submit")
31
+
32
+ def on_submit(message, chat_history):
33
+ response = chat_with_openai(message)
34
+ chat_history.append((message, response))
35
+ return chat_history, ""
36
+
37
+ submit_btn.click(on_submit, inputs=[msg, chatbot], outputs=[chatbot, msg])
38
+
39
+ # Launch the Gradio app
40
+ ui.launch()