Spaces:
Sleeping
Sleeping
File size: 2,049 Bytes
76ca409 5857833 76ca409 dd19b13 681db97 76ca409 8b0fd76 76ca409 f66d957 5869635 f66d957 76ca409 |
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 |
import os
import json
import gradio as gr
from llama_cpp import Llama
# Get environment variables
model_id = os.getenv('MODEL')
quant = os.getenv('QUANT')
chat_template = os.getenv('CHAT_TEMPLATE')
# Interface variables
model_name = model_id.split('/')[1].split('-GGUF')[0]
title = f"😻 {model_name}"
description = f"Chat with <a href=\"https://huggingface.co/{model_id}\">{model_name}</a> in GGUF format ({quant})! Support me with [Ko-Fi](https://ko-fi.com/gorillamonsooniii) , [Saweria](https://saweria.co/gorillamonsoon), or [Patreon](https://www.patreon.com/GorillaMonsoon)"
# Initialize the LLM
llm = Llama(model_path="model.gguf",
n_ctx=2048,
n_threads=8,
chat_format=chat_template)
# Function for streaming chat completions
def chat_stream_completion(message, history, system_prompt):
messages_prompts = [{"role": "system", "content": system_prompt}]
for human, assistant in history:
messages_prompts.append({"role": "user", "content": human})
messages_prompts.append({"role": "assistant", "content": assistant})
messages_prompts.append({"role": "user", "content": message})
response = llm.create_chat_completion(
messages=messages_prompts,
stream=True
)
message_repl = ""
for chunk in response:
if len(chunk['choices'][0]["delta"]) != 0 and "content" in chunk['choices'][0]["delta"]:
message_repl = message_repl + chunk['choices'][0]["delta"]["content"]
yield message_repl
# Gradio chat interface
gr.ChatInterface(
fn=chat_stream_completion,
title=title,
description=description,
additional_inputs=[gr.Textbox("Kamu adalah Tika, asisten AI dari gmonsoon.")],
additional_inputs_accordion="📝 System prompt",
examples=[
["Siapakah Thomas Alva Edison"],
["Apa yang disebut Katoda dan Anoda"],
["selesaikan persamaan berikut 4x+3=11"],
["Apa isi dari Hukum Newton I"],
["Tolong jelaskan mengenai H2O"]
]
).queue().launch(server_name="0.0.0.0") |