Song-Writer / app.py
broadfield's picture
Update app.py
3b7f7a5
raw
history blame
1.23 kB
from huggingface_hub import InferenceClient
import gradio as gr
import random
import prompts
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
def format_prompt(message, history):
prompt = "<s>"
for user_prompt, bot_response in history:
prompt += f"[INST] {user_prompt} [/INST]"
prompt += f" {bot_response}</s> "
prompt += f"[INST] {message} [/INST]"
return prompt
def generate(prompt,history):
seed = random.randint(1,9999999999999)
system_prompt = prompts.SONG_WRITER
generate_kwargs = dict(
temperature=0.9,
max_new_tokens=4096,
top_p=0.95,
repetition_penalty=1.0,
do_sample=True,
seed=seed,
)
formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
output = ""
for response in stream:
output += response.token.text
yield output
gr.ChatInterface(
fn=generate,
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
title="Song Writer",
concurrency_limit=20,
).launch(show_api=False)