Merge pull request #2575 from lungothrin/feature/chatter-with-role

support on fly test of tools

Former-commit-id: c49af47d97ef2bae2c57dd03333752321ad6d483
This commit is contained in:
hoshi-hiyouga
2024-02-29 00:39:47 +08:00
committed by GitHub
3 changed files with 17 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ from typing import TYPE_CHECKING, Dict, Optional, Tuple
import gradio as gr
from ...data import Role
from ..utils import check_json_schema
@@ -22,6 +23,7 @@ def create_chat_box(
with gr.Column(scale=4):
system = gr.Textbox(show_label=False)
tools = gr.Textbox(show_label=False, lines=2)
role = gr.Dropdown(choices=[Role.USER.value, Role.OBSERVATION.value], value=Role.USER.value)
query = gr.Textbox(show_label=False, lines=8)
submit_btn = gr.Button(variant="primary")
@@ -36,7 +38,7 @@ def create_chat_box(
submit_btn.click(
engine.chatter.predict,
[chatbot, query, messages, system, tools, max_new_tokens, top_p, temperature],
[chatbot, role, query, messages, system, tools, max_new_tokens, top_p, temperature],
[chatbot, messages],
show_progress=True,
).then(lambda: gr.update(value=""), outputs=[query])
@@ -50,6 +52,7 @@ def create_chat_box(
dict(
system=system,
tools=tools,
role=role,
query=query,
submit_btn=submit_btn,
clear_btn=clear_btn,