prithivMLmods commited on
Commit
ec64b54
1 Parent(s): 48e9099

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -12,11 +12,6 @@ footer {
12
  }
13
  '''
14
 
15
- DESCRIPTION = """
16
-
17
-
18
- """
19
-
20
  ACCESS_TOKEN = os.getenv("HF_TOKEN")
21
 
22
  client = OpenAI(
@@ -53,11 +48,11 @@ def respond(
53
  messages=messages,
54
  ):
55
  token = message.choices[0].delta.content
 
56
  response += token
57
  yield response
58
 
59
  demo = gr.ChatInterface(
60
- gr.Markdown(DESCRIPTION),
61
  respond,
62
  additional_inputs=[
63
  gr.Textbox(value="", label="System message", visible=False),
 
12
  }
13
  '''
14
 
 
 
 
 
 
15
  ACCESS_TOKEN = os.getenv("HF_TOKEN")
16
 
17
  client = OpenAI(
 
48
  messages=messages,
49
  ):
50
  token = message.choices[0].delta.content
51
+
52
  response += token
53
  yield response
54
 
55
  demo = gr.ChatInterface(
 
56
  respond,
57
  additional_inputs=[
58
  gr.Textbox(value="", label="System message", visible=False),