bizvideoschool commited on
Commit
3620f53
·
1 Parent(s): 4eeb41c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -33
app.py CHANGED
@@ -1,42 +1,22 @@
1
  import openai
2
- import gradio as gr
3
- import os
4
 
5
- openai.api_key = os.environ["OPENAI_API_KEY"]
6
 
7
- model_engine = "text-davinci-002"
8
- openai.api_key = os.getenv("OPENAI_API_KEY")
9
 
10
- def chatbot(prompt):
11
- completions = openai.Completion.create(
12
- engine=model_engine,
13
- prompt=prompt,
14
- max_tokens=1024,
15
- n=1,
16
- stop=None,
17
- temperature=0.5,
18
  )
 
 
 
19
 
20
- message = completions.choices[0].text.strip()
21
- return message
22
-
23
- prompt_text = "Please describe the video you would like to create:"
24
-
25
-
26
- interface = gr.Interface(
27
- fn=chatbot,
28
- inputs=gr.inputs.Textbox(label=prompt_text, lines=7),
29
-
30
-
31
- outputs=gr.outputs.Textbox(),
32
- title="Real Estate Video Script Writer",
33
- description="A simple chatbot based on GPT-3 that writes scripts for real estate videos.",
34
- )
35
-
36
-
37
- if __name__ == "__main__":
38
- interface.launch()
39
-
40
 
 
41
 
42
 
 
1
  import openai
2
+ import gradio
 
3
 
4
+ openai.api_key = "####"
5
 
6
+ messages = [{"role": "system", "content": "You are a financial experts that specializes in real estate investment and negotiation"}]
 
7
 
8
+ def CustomChatGPT(user_input):
9
+ messages.append({"role": "user", "content": user_input})
10
+ response = openai.ChatCompletion.create(
11
+ model = "gpt-3.5-turbo",
12
+ messages = messages
 
 
 
13
  )
14
+ ChatGPT_reply = response["choices"][0]["message"]["content"]
15
+ messages.append({"role": "assistant", "content": ChatGPT_reply})
16
+ return ChatGPT_reply
17
 
18
+ demo = gradio.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "Real Estate Pro")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ demo.launch(share=True)
21
 
22