anychat / app_allenai.py
akhaliq's picture
akhaliq HF staff
update to use client
f013f59
raw
history blame
2.17 kB
from gradio_client import Client
import gradio as gr
MODELS = {
"Olmo": "akhaliq/olmo-anychat",
"Allen Test": "akhaliq/allen-test"
}
def create_chat_fn(client):
def chat(message, history):
response = client.predict(
message=message,
system_prompt="You are a helpful AI assistant.",
temperature=0.7,
max_new_tokens=1024,
top_k=40,
repetition_penalty=1.1,
top_p=0.95,
api_name="/chat"
)
return response
return chat
def set_client_for_session(model_name: str, request: gr.Request):
headers = {}
if request and hasattr(request, 'request') and hasattr(request.request, 'headers'):
x_ip_token = request.request.headers.get('x-ip-token')
if x_ip_token:
headers["X-IP-Token"] = x_ip_token
return Client(MODELS[model_name], headers=headers)
def safe_chat_fn(message, history, client):
if client is None:
return "Error: Client not initialized. Please refresh the page."
return create_chat_fn(client)(message, history)
with gr.Blocks() as interface:
gr.Markdown("# AI Chat Interface")
client = gr.State()
model_dropdown = gr.Dropdown(
choices=list(MODELS.keys()),
value="Olmo",
label="Select Model",
interactive=True
)
chat_interface = gr.ChatInterface(
fn=safe_chat_fn,
title="",
description="Chat with AI",
examples=[
["Hello! How are you?", None],
["What is machine learning?", None]
],
cache_examples=False,
additional_inputs=[client]
)
# Update client when model changes
def update_model(model_name, request):
return set_client_for_session(model_name, request)
model_dropdown.change(
fn=update_model,
inputs=[model_dropdown],
outputs=[client],
)
# Initialize client on page load
interface.load(
fn=set_client_for_session,
inputs=gr.State("Olmo"), # Default model
outputs=client,
)
interface.launch(show_error=True)