Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ def respond(
|
|
85 |
|
86 |
try:
|
87 |
response = ""
|
88 |
-
for
|
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(
|
97 |
-
token =
|
98 |
if token is not None:
|
99 |
response += token
|
100 |
-
yield
|
101 |
|
102 |
-
return
|
103 |
except Exception as e:
|
104 |
print(f"Error in respond: {str(e)}")
|
105 |
-
return
|
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 + [
|
115 |
else:
|
116 |
-
return history + [
|
117 |
except Exception as e:
|
118 |
-
return history + [
|
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 |
-
|
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(
|