import openai import os import gradio as gr from openai import OpenAI # Ensure the OPENAI_API_KEY environment variable is set openai.api_key = os.getenv("OPENAI_API_KEY") if openai.api_key is None: raise ValueError("Die Umgebungsvariable OPENAI_API_KEY ist nicht gesetzt.") client = OpenAI() def chat_with_gpt(user_input, system_message, temperature, history): if not history: history = [] # Append the user message to the history history.append({"role": "user", "content": user_input}) # Get the response from the model response = client.chat.completions.create( model="gpt-3.5-turbo", messages=history + [{"role": "system", "content": system_message}], temperature=temperature ) # Append the assistant's response to the history assistant_message = response.choices[0].message.content history.append({"role": "assistant", "content": assistant_message}) # Convert history to the format expected by gr.Chatbot formatted_history = [] for msg in history: if msg["role"] == "user": formatted_history.append([msg["content"], None]) else: # msg["role"] == "assistant" formatted_history.append([None, msg["content"]]) return formatted_history, history def reset_history(system_message): # Return an empty conversation history return [], [] with gr.Blocks() as demo: gr.HTML("""