aiqcamp commited on
Commit
bb8021c
ยท
verified ยท
1 Parent(s): 34b069c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -11
app.py CHANGED
@@ -85,7 +85,7 @@ def respond(
85
 
86
  try:
87
  response = ""
88
- for message in client.chat.completions.create(
89
  model="CohereForAI/c4ai-command-r-plus-08-2024",
90
  max_tokens=max_tokens,
91
  stream=True,
@@ -93,16 +93,16 @@ def respond(
93
  top_p=top_p,
94
  messages=messages,
95
  ):
96
- if hasattr(message.choices[0].delta, 'content'):
97
- token = message.choices[0].delta.content
98
  if token is not None:
99
  response += token
100
- yield history + [[message, response]]
101
 
102
- return history + [[message, response]]
103
  except Exception as e:
104
  print(f"Error in respond: {str(e)}")
105
- return history + [[message, f"์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค: {str(e)}"]]
106
 
107
  def process_chat(message, history):
108
  try:
@@ -111,11 +111,11 @@ def process_chat(message, history):
111
  params = extract_parameters(message, relevant_data)
112
  protein_result = generate_protein(params)
113
  explanation = generate_explanation(protein_result, params)
114
- return history + [[message, explanation]]
115
  else:
116
- return history + [[message, "๋‹จ๋ฐฑ์งˆ ์ƒ์„ฑ ๊ด€๋ จ ํ‚ค์›Œ๋“œ๋ฅผ ํฌํ•จํ•ด์ฃผ์„ธ์š”."]]
117
  except Exception as e:
118
- return history + [[message, f"์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค: {str(e)}"]]
119
 
120
  def search_protein_data(query):
121
  relevant_entries = []
@@ -620,8 +620,11 @@ with gr.Blocks(theme='ParityError/Interstellar') as demo:
620
  with gr.Column(scale=1):
621
  # ์ฑ—๋ด‡ ์ธํ„ฐํŽ˜์ด์Šค
622
  gr.Markdown("# ๐Ÿค– AI ๋‹จ๋ฐฑ์งˆ ์„ค๊ณ„ ๋„์šฐ๋ฏธ")
623
- chatbot = gr.Chatbot(height=600)
624
- # ์—ฌ๊ธฐ์— ์ˆ˜์ •๋œ ์ž…๋ ฅ ํ•„๋“œ ์ถ”๊ฐ€ --------------------------------
 
 
 
625
  with gr.Row():
626
  msg = gr.Textbox(
627
  label="๋ฉ”์‹œ์ง€๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”",
@@ -632,6 +635,8 @@ with gr.Blocks(theme='ParityError/Interstellar') as demo:
632
  submit_btn = gr.Button("์ „์†ก", variant="primary", scale=1)
633
  clear = gr.Button("๋Œ€ํ™” ๋‚ด์šฉ ์ง€์šฐ๊ธฐ")
634
 
 
 
635
 
636
  with gr.Accordion("์ฑ„ํŒ… ์„ค์ •", open=False):
637
  system_message = gr.Textbox(
 
85
 
86
  try:
87
  response = ""
88
+ for chunk in client.chat.completions.create(
89
  model="CohereForAI/c4ai-command-r-plus-08-2024",
90
  max_tokens=max_tokens,
91
  stream=True,
 
93
  top_p=top_p,
94
  messages=messages,
95
  ):
96
+ if hasattr(chunk.choices[0].delta, 'content'):
97
+ token = chunk.choices[0].delta.content
98
  if token is not None:
99
  response += token
100
+ yield [(message, response)]
101
 
102
+ return [(message, response)]
103
  except Exception as e:
104
  print(f"Error in respond: {str(e)}")
105
+ return [(message, f"์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค: {str(e)}")]
106
 
107
  def process_chat(message, history):
108
  try:
 
111
  params = extract_parameters(message, relevant_data)
112
  protein_result = generate_protein(params)
113
  explanation = generate_explanation(protein_result, params)
114
+ return history + [(message, explanation)]
115
  else:
116
+ return history + [(message, "๋‹จ๋ฐฑ์งˆ ์ƒ์„ฑ ๊ด€๋ จ ํ‚ค์›Œ๋“œ๋ฅผ ํฌํ•จํ•ด์ฃผ์„ธ์š”.")]
117
  except Exception as e:
118
+ return history + [(message, f"์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค: {str(e)}")]
119
 
120
  def search_protein_data(query):
121
  relevant_entries = []
 
620
  with gr.Column(scale=1):
621
  # ์ฑ—๋ด‡ ์ธํ„ฐํŽ˜์ด์Šค
622
  gr.Markdown("# ๐Ÿค– AI ๋‹จ๋ฐฑ์งˆ ์„ค๊ณ„ ๋„์šฐ๋ฏธ")
623
+ # ์—ฌ๊ธฐ๋ฅผ ์ˆ˜์ •
624
+ chatbot = gr.Chatbot(
625
+ height=600,
626
+ type='messages' # ๋ฉ”์‹œ์ง€ ํ˜•์‹ ์ง€์ •
627
+ )
628
  with gr.Row():
629
  msg = gr.Textbox(
630
  label="๋ฉ”์‹œ์ง€๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”",
 
635
  submit_btn = gr.Button("์ „์†ก", variant="primary", scale=1)
636
  clear = gr.Button("๋Œ€ํ™” ๋‚ด์šฉ ์ง€์šฐ๊ธฐ")
637
 
638
+
639
+
640
 
641
  with gr.Accordion("์ฑ„ํŒ… ์„ค์ •", open=False):
642
  system_message = gr.Textbox(