Spaces:
Runtime error
Runtime error
File size: 10,700 Bytes
2e05556 f3616e6 2e05556 07bba12 2e05556 7d303ae 2e05556 1ac00ec 2e05556 7cbf64f 2e05556 d1163d3 2e05556 d1163d3 2e05556 1075494 2e05556 b1a1d84 2e05556 07bba12 2e05556 7d303ae b6f9851 07bba12 2e05556 07bba12 2e05556 07bba12 2e05556 07bba12 2e05556 07bba12 2e05556 7d303ae 2e05556 4f9ae67 2e05556 1ac00ec 2e05556 7476653 7d303ae 2e05556 1ac00ec 9eeaf3e 2e05556 1ac00ec 2e05556 9cc4dbf 2e05556 1ac00ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
import gradio as gr
import json
import requests
import os
from text_generation import Client, InferenceAPIClient
#Streaming endpoint for OPENAI ChatGPT
API_URL = "https://api.openai.com/v1/chat/completions"
#Streaming endpoint for OPENCHATKIT
API_URL_TGTHR = os.getenv('API_URL_TGTHR')
openchat_preprompt = (
"\n<human>: Hi!\n<bot>: My name is Bot, model version is 0.15, part of an open-source kit for "
"fine-tuning new bots! I was created by Together, LAION, and Ontocord.ai and the open-source "
"community. I am not human, not evil and not alive, and thus have no thoughts and feelings, "
"but I am programmed to be helpful, polite, honest, and friendly.\n")
#Predict function for CHATGPT
def predict_chatgpt(inputs, top_p_chatgpt, temperature_chatgpt, openai_api_key, chat_counter_chatgpt, chatbot_chatgpt=[], history=[]):
#Define payload and header for chatgpt API
payload = {
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": f"{inputs}"}],
"temperature" : 1.0,
"top_p":1.0,
"n" : 1,
"stream": True,
"presence_penalty":0,
"frequency_penalty":0,
}
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {openai_api_key}"
}
#debug
#print(f"chat_counter_chatgpt - {chat_counter_chatgpt}")
#Handling the different roles for ChatGPT
if chat_counter_chatgpt != 0 :
messages=[]
for data in chatbot_chatgpt:
temp1 = {}
temp1["role"] = "user"
temp1["content"] = data[0]
temp2 = {}
temp2["role"] = "assistant"
temp2["content"] = data[1]
messages.append(temp1)
messages.append(temp2)
temp3 = {}
temp3["role"] = "user"
temp3["content"] = inputs
messages.append(temp3)
payload = {
"model": "gpt-3.5-turbo",
"messages": messages, #[{"role": "user", "content": f"{inputs}"}],
"temperature" : temperature_chatgpt, #1.0,
"top_p": top_p_chatgpt, #1.0,
"n" : 1,
"stream": True,
"presence_penalty":0,
"frequency_penalty":0,
}
chat_counter_chatgpt+=1
history.append(inputs)
# make a POST request to the API endpoint using the requests.post method, passing in stream=True
response = requests.post(API_URL, headers=headers, json=payload, stream=True)
token_counter = 0
partial_words = ""
counter=0
for chunk in response.iter_lines():
#Skipping the first chunk
if counter == 0:
counter+=1
continue
# check whether each line is non-empty
if chunk.decode() :
chunk = chunk.decode()
# decode each line as response data is in bytes
if len(chunk) > 13 and "content" in json.loads(chunk[6:])['choices'][0]["delta"]:
partial_words = partial_words + json.loads(chunk[6:])['choices'][0]["delta"]["content"]
if token_counter == 0:
history.append(" " + partial_words)
else:
history[-1] = partial_words
chat = [(history[i], history[i + 1]) for i in range(0, len(history) - 1, 2) ] # convert to tuples of list
token_counter+=1
yield chat, history, chat_counter_chatgpt # this resembles {chatbot: chat, state: history}
#Predict function for OPENCHATKIT
def predict_together(model: str,
inputs: str,
top_p: float,
temperature: float,
top_k: int,
repetition_penalty: float,
watermark: bool,
chatbot,
history,):
client = Client(os.getenv("API_URL_TGTHR")) #get_client(model)
# debug
#print(f"^^client is - {client}")
user_name, assistant_name = "<human>: ", "<bot>: "
preprompt = openchat_preprompt
sep = '\n'
history.append(inputs)
past = []
for data in chatbot:
user_data, model_data = data
if not user_data.startswith(user_name):
user_data = user_name + user_data
if not model_data.startswith("\n" + assistant_name):
model_data = "\n" + assistant_name + model_data
past.append(user_data + model_data.rstrip() + "\n")
if not inputs.startswith(user_name):
inputs = user_name + inputs
total_inputs = preprompt + "".join(past) + inputs + "\n" + assistant_name.rstrip()
# truncate total_inputs
#total_inputs = total_inputs[-1000:]
partial_words = ""
for i, response in enumerate(client.generate_stream(
total_inputs,
top_p=top_p,
top_k=top_k,
repetition_penalty=repetition_penalty,
watermark=watermark,
temperature=temperature,
max_new_tokens=500,
stop_sequences=[user_name.rstrip(), assistant_name.rstrip()],
)):
if response.token.special:
continue
partial_words = partial_words + response.token.text
if partial_words.endswith(user_name.rstrip()):
partial_words = partial_words.rstrip(user_name.rstrip())
if partial_words.endswith(assistant_name.rstrip()):
partial_words = partial_words.rstrip(assistant_name.rstrip())
if i == 0:
history.append(" " + partial_words)
else:
history[-1] = partial_words
chat = [
(history[i].strip(), history[i + 1].strip()) for i in range(0, len(history) - 1, 2)
]
yield chat, history
def reset_textbox():
return gr.update(value="")
def reset_chat(chatbot, state):
# debug
#print(f"^^chatbot value is - {chatbot}")
#print(f"^^state value is - {state}")
return None, []
title = """<h1 align="center">🔥🔥Comparison: ChatGPT & OpenChatKit </h1><br><h3 align="center">🚀A Gradio Streaming Demo</h3><br>Official Demo: <a href="https://huggingface.co/spaces/togethercomputer/OpenChatKit">OpenChatKit feedback app</a>"""
description = """Language models can be conditioned to act like dialogue agents through a conversational prompt that typically takes the form:
```
User: <utterance>
Assistant: <utterance>
User: <utterance>
Assistant: <utterance>
...
```
In this app, you can explore the outputs of multiple LLMs when prompted in similar ways.
"""
with gr.Blocks(css="""#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
#chatgpt {height: 520px; overflow: auto;}
#chattogether {height: 520px; overflow: auto;} """ ) as demo:
#clear {width: 100px; height:50px; font-size:12px}""") as demo:
gr.HTML(title)
with gr.Row():
with gr.Column(scale=14):
with gr.Box():
with gr.Row():
with gr.Column(scale=13):
openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here for ChatGPT")
inputs = gr.Textbox(placeholder="Hi there!", label="Type an input and press Enter ⤵️ " )
with gr.Column(scale=1):
b1 = gr.Button('🏃Run', elem_id = 'run').style(full_width=True)
b2 = gr.Button('🔄Clear up Chatbots!', elem_id = 'clear').style(full_width=True)
state_chatgpt = gr.State([])
state_together = gr.State([])
with gr.Box():
with gr.Row():
chatbot_chatgpt = gr.Chatbot(elem_id="chatgpt", label='ChatGPT API - OPENAI')
chatbot_together = gr.Chatbot(elem_id="chattogether", label='OpenChatKit - Text Generation')
with gr.Column(scale=2, elem_id='parameters'):
with gr.Box():
gr.HTML("Parameters for #OpenCHAtKit")
top_p = gr.Slider(minimum=-0, maximum=1.0,value=0.25, step=0.05,interactive=True, label="Top-p",)
temperature = gr.Slider(minimum=-0, maximum=5.0, value=0.6, step=0.1, interactive=True, label="Temperature", )
top_k = gr.Slider( minimum=1, maximum=50, value=50, step=1, interactive=True, label="Top-k",)
repetition_penalty = gr.Slider( minimum=0.1, maximum=3.0, value=1.01, step=0.01, interactive=True, label="Repetition Penalty",)
watermark = gr.Checkbox(value=True, label="Text watermarking")
model = gr.CheckboxGroup(value="Rallio67/joi2_20B_instruct_alpha",
choices=["togethercomputer/GPT-NeoXT-Chat-Base-20B", "Rallio67/joi2_20B_instruct_alpha", "google/flan-t5-xxl", "google/flan-ul2", "bigscience/bloomz", "EleutherAI/gpt-neox-20b",],
label="Model",visible=False,)
temp_textbox_together = gr.Textbox(value=model.choices[0], visible=False)
with gr.Box():
gr.HTML("Parameters for OpenAI's ChatGPT")
top_p_chatgpt = gr.Slider( minimum=-0, maximum=1.0, value=1.0, step=0.05, interactive=True, label="Top-p",)
temperature_chatgpt = gr.Slider( minimum=-0, maximum=5.0, value=1.0, step=0.1, interactive=True, label="Temperature",)
chat_counter_chatgpt = gr.Number(value=0, visible=False, precision=0)
inputs.submit(reset_textbox, [], [inputs])
inputs.submit( predict_chatgpt,
[inputs, top_p_chatgpt, temperature_chatgpt, openai_api_key, chat_counter_chatgpt, chatbot_chatgpt, state_chatgpt],
[chatbot_chatgpt, state_chatgpt, chat_counter_chatgpt],)
inputs.submit( predict_together,
[temp_textbox_together, inputs, top_p, temperature, top_k, repetition_penalty, watermark, chatbot_together, state_together, ],
[chatbot_together, state_together],)
b1.click( predict_chatgpt,
[inputs, top_p_chatgpt, temperature_chatgpt, openai_api_key, chat_counter_chatgpt, chatbot_chatgpt, state_chatgpt],
[chatbot_chatgpt, state_chatgpt, chat_counter_chatgpt],)
b1.click( predict_together,
[temp_textbox_together, inputs, top_p, temperature, top_k, repetition_penalty, watermark, chatbot_together, state_together, ],
[chatbot_together, state_together],)
b2.click(reset_chat, [chatbot_chatgpt, state_chatgpt], [chatbot_chatgpt, state_chatgpt])
b2.click(reset_chat, [chatbot_together, state_together], [chatbot_together, state_together])
gr.HTML('''<center><a href="https://huggingface.co/spaces/ysharma/OpenChatKit_ChatGPT_Comparison?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>Duplicate the Space and run securely with your OpenAI API Key</center>''')
gr.Markdown(description)
demo.queue(concurrency_count=16).launch(height= 2500, debug=True) |