import gradio as gr import requests import json import os API_URL = "https://host.palple.polrambora.com/pmsq" API_TOKEN = os.getenv("POLLY") headers = { "Authorization": f"{API_TOKEN}", "Content-Type": "application/json", } def respond( message, history: list[tuple[str, str, str, str, str, str]], # Added profile picture fields system_message, max_tokens, top_p, temperature, ): messages = [] for val in history: user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic = val if user_message: messages.append({ "role": "user", "content": user_message, "profile": user_profile, "picture": user_pic }) if assistant_message: messages.append({ "role": "assistant", "content": assistant_message, "profile": assistant_profile, "picture": "API.png" }) data = { "preferences": { "max_char": max_tokens, "temperature": temperature, "top_p": top_p, "system_message": system_message }, "conversation_history": messages, "input": message } response = requests.post(API_URL, headers=headers, data=json.dumps(data)) if response.status_code == 200: response_json = response.json() print(response_json) respond = response_json["msq"]["message"][0] yield respond else: response_json = response.json() yield "Error: " + response_json.get("error", "Unknown error occurred.") """ For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface """ def custom_render(message, history): formatted_history = "" for user_message, assistant_message, user_profile, assistant_profile, user_pic, assistant_pic in history: if user_message: formatted_history += f"