Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import requests
|
| 3 |
+
import json
|
| 4 |
+
import os
|
| 5 |
+
|
| 6 |
+
API_KEY = os.getenv('API_KEY')
|
| 7 |
+
INVOKE_URL = "https://api.nvcf.nvidia.com/v2/nvcf/pexec/functions/6acada03-fe2f-4e4d-9e0a-e711b9fd1b59"
|
| 8 |
+
FETCH_URL_FORMAT = "https://api.nvcf.nvidia.com/v2/nvcf/pexec/status/"
|
| 9 |
+
|
| 10 |
+
headers = {
|
| 11 |
+
"Authorization": f"Bearer {API_KEY}",
|
| 12 |
+
"Accept": "application/json",
|
| 13 |
+
"Content-Type": "application/json",
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
BASE_SYSTEM_MESSAGE = "I carefully provide accurate, factual, thoughtful, nuanced answers and am brilliant at reasoning."
|
| 17 |
+
|
| 18 |
+
def clear_chat(chat_history_state, chat_message):
|
| 19 |
+
print("Clearing chat...")
|
| 20 |
+
chat_history_state = []
|
| 21 |
+
chat_message = ''
|
| 22 |
+
return chat_history_state, chat_message
|
| 23 |
+
|
| 24 |
+
def user(message, history, system_message=None):
|
| 25 |
+
print(f"User message: {message}")
|
| 26 |
+
history = history or []
|
| 27 |
+
if system_message: # Check if a system message is provided and should be added
|
| 28 |
+
history.append({"role": "system", "content": system_message})
|
| 29 |
+
history.append({"role": "user", "content": message})
|
| 30 |
+
return history
|
| 31 |
+
|
| 32 |
+
def call_nvidia_api(history, max_tokens, temperature, top_p):
|
| 33 |
+
payload = {
|
| 34 |
+
"messages": history,
|
| 35 |
+
"temperature": temperature,
|
| 36 |
+
"top_p": top_p,
|
| 37 |
+
"max_tokens": max_tokens,
|
| 38 |
+
"stream": False
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
print(f"Payload enviado: {payload}") # Imprime o payload enviado
|
| 42 |
+
|
| 43 |
+
session = requests.Session()
|
| 44 |
+
response = session.post(INVOKE_URL, headers=headers, json=payload)
|
| 45 |
+
|
| 46 |
+
while response.status_code == 202:
|
| 47 |
+
request_id = response.headers.get("NVCF-REQID")
|
| 48 |
+
fetch_url = FETCH_URL_FORMAT + request_id
|
| 49 |
+
response = session.get(fetch_url, headers=headers)
|
| 50 |
+
|
| 51 |
+
response.raise_for_status()
|
| 52 |
+
response_body = response.json()
|
| 53 |
+
|
| 54 |
+
print(f"Payload recebido: {response_body}") # Imprime o payload recebido
|
| 55 |
+
|
| 56 |
+
if response_body["choices"]:
|
| 57 |
+
assistant_message = response_body["choices"][0]["message"]["content"]
|
| 58 |
+
history.append({"role": "assistant", "content": assistant_message})
|
| 59 |
+
|
| 60 |
+
return history
|
| 61 |
+
|
| 62 |
+
def chat(history, system_message, max_tokens, temperature, top_p):
|
| 63 |
+
print("Starting chat...")
|
| 64 |
+
updated_history = call_nvidia_api(history, max_tokens, temperature, top_p)
|
| 65 |
+
return updated_history, ""
|
| 66 |
+
|
| 67 |
+
# Gradio interface setup
|
| 68 |
+
with gr.Blocks() as demo:
|
| 69 |
+
with gr.Row():
|
| 70 |
+
with gr.Column():
|
| 71 |
+
gr.Markdown("StarCoder2-15B Free Demo")
|
| 72 |
+
description="""
|
| 73 |
+
<div style="text-align: center; font-size: 1.5em; margin-bottom: 20px;">
|
| 74 |
+
<strong>Explore the Capabilities of StarCoder2-15B</strong>
|
| 75 |
+
</div>
|
| 76 |
+
<p>StarCoder2 is a LLM specializing in code completion developed in partnership with BigCode community.
|
| 77 |
+
</p>
|
| 78 |
+
<p> <strong>How to Use:</strong></p>
|
| 79 |
+
<ol>
|
| 80 |
+
<li>Enter your <strong>message</strong> in the textbox to start a conversation or ask a question.</li>
|
| 81 |
+
<li>Adjust the <strong>Temperature</strong> and <strong>Top P</strong> sliders to control the creativity and diversity of the responses.</li>
|
| 82 |
+
<li>Set the <strong>Max Tokens</strong> slider to determine the length of the response.</li>
|
| 83 |
+
<li>Use the <strong>System Message</strong> textbox if you wish to provide a specific context or instruction for the AI.</li>
|
| 84 |
+
<li>Click <strong>Send message</strong> to submit your query and receive a response from StarCoder2-15B.</li>
|
| 85 |
+
<li>Press <strong>New topic</strong> to clear the chat history and start a new conversation thread.</li>
|
| 86 |
+
</ol>
|
| 87 |
+
<p> <strong>Powered by NVIDIA's cutting-edge AI API, StarCoder2-15B offers an unparalleled opportunity to interact with an AI model of exceptional conversational ability, accessible to everyone at no cost.</strong></p>
|
| 88 |
+
<p> <strong>HF Created by:</strong> @artificialguybr (<a href="https://twitter.com/artificialguybr">Twitter</a>)</p>
|
| 89 |
+
<p> <strong>Discover more:</strong> <a href="https://artificialguy.com">artificialguy.com</a></p>
|
| 90 |
+
"""
|
| 91 |
+
gr.Markdown(description)
|
| 92 |
+
chatbot = gr.Chatbot()
|
| 93 |
+
message = gr.Textbox(label="What do you want to chat about?", placeholder="Ask me anything.", lines=3)
|
| 94 |
+
submit = gr.Button(value="Send message")
|
| 95 |
+
clear = gr.Button(value="New topic")
|
| 96 |
+
system_msg = gr.Textbox(BASE_SYSTEM_MESSAGE, label="System Message", placeholder="System prompt.", lines=5)
|
| 97 |
+
max_tokens = gr.Slider(20, 1024, label="Max Tokens", step=20, value=1024, interactive=True)
|
| 98 |
+
temperature = gr.Slider(0.0, 1.0, label="Temperature", step=0.1, value=0.7, interactive=True)
|
| 99 |
+
top_p = gr.Slider(0.0, 1.0, label="Top P", step=0.05, value=0.95, interactive=True)
|
| 100 |
+
chat_history_state = gr.State([])
|
| 101 |
+
|
| 102 |
+
# Ajuste na definição da função update_chatbot para aceitar o valor atualizado do system_msg
|
| 103 |
+
def update_chatbot(message, chat_history, system_message, max_tokens, temperature, top_p):
|
| 104 |
+
print("Updating chatbot...")
|
| 105 |
+
if not chat_history or (chat_history and chat_history[-1]["role"] != "user"):
|
| 106 |
+
chat_history = user(message, chat_history, system_message if not chat_history else None)
|
| 107 |
+
else:
|
| 108 |
+
chat_history = user(message, chat_history)
|
| 109 |
+
chat_history, _ = chat(chat_history, system_message, max_tokens, temperature, top_p)
|
| 110 |
+
|
| 111 |
+
formatted_chat_history = []
|
| 112 |
+
for user_msg, assistant_msg in zip([msg["content"].strip() for msg in chat_history if msg["role"] == "user"],
|
| 113 |
+
[msg["content"].strip() for msg in chat_history if msg["role"] == "assistant"]):
|
| 114 |
+
if user_msg or assistant_msg: # Verify if either message is not empty
|
| 115 |
+
formatted_chat_history.append([user_msg, assistant_msg])
|
| 116 |
+
|
| 117 |
+
return formatted_chat_history, chat_history, ""
|
| 118 |
+
|
| 119 |
+
submit.click(
|
| 120 |
+
fn=update_chatbot,
|
| 121 |
+
inputs=[message, chat_history_state, system_msg, max_tokens, temperature, top_p],
|
| 122 |
+
outputs=[chatbot, chat_history_state, message]
|
| 123 |
+
)
|
| 124 |
+
|
| 125 |
+
clear.click(
|
| 126 |
+
fn=clear_chat,
|
| 127 |
+
inputs=[chat_history_state, message],
|
| 128 |
+
outputs=[chat_history_state, message]
|
| 129 |
+
)
|
| 130 |
+
|
| 131 |
+
demo.launch()
|