File size: 1,233 Bytes
9498f26
 
 
 
 
 
 
 
 
 
 
 
 
 
25a21df
9498f26
 
b78c4fb
9498f26
 
3b7f7a5
9498f26
1bbc4ff
9498f26
 
 
 
 
 
 
 
 
 
 
b78c4fb
 
 
 
 
 
 
 
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
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)