LeeKinXUn commited on
Commit
0116dc1
1 Parent(s): 9d478b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -4,13 +4,13 @@
4
 
5
  os.environ[ "http_proxy" ] = "http://localhost:7890"
6
  os.environ[ "https_proxy" ] = "http://localhost:7890"
7
- openai.api_key = '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'
8
 
9
  消息 = [
10
  { "role" : "system" , "content" : "你是一个乐于助人、善良的 AI 小助手。" },
11
  ]
12
 
13
- def ChatGPT_Bot(输入):
14
  如果输入:
15
  messages.append({ “角色”:“用户”,“内容”:输入})
16
  聊天 = openai.ChatCompletion.create(
@@ -25,4 +25,4 @@ outputs = Textbox(lines= 7 , label= "来自ChatGPT的回答" )
25
 
26
  gr.Interface(fn=ChatGPT_Bot, inputs=inputs, outputs=outputs, title= "ChatGPT人工智能助手" ,
27
  description= "我是您的AI助理,您可以问任何您想知道的问题" ,
28
- 主题=gr.themes.Default()).launch(share= True )
 
4
 
5
  os.environ[ "http_proxy" ] = "http://localhost:7890"
6
  os.environ[ "https_proxy" ] = "http://localhost:7890"
7
+ openai.api_key = 'OPENAI_API_KEY'
8
 
9
  消息 = [
10
  { "role" : "system" , "content" : "你是一个乐于助人、善良的 AI 小助手。" },
11
  ]
12
 
13
+ def ChatGPT_Bot(输入):
14
  如果输入:
15
  messages.append({ “角色”:“用户”,“内容”:输入})
16
  聊天 = openai.ChatCompletion.create(
 
25
 
26
  gr.Interface(fn=ChatGPT_Bot, inputs=inputs, outputs=outputs, title= "ChatGPT人工智能助手" ,
27
  description= "我是您的AI助理,您可以问任何您想知道的问题" ,
28
+ 主题=gr.themes.Default().launch(share= True )