from types import SimpleNamespace TEAM = "ucrsf" # None? PROJECT = "safetybot" JOB_TYPE = "production" default_config = SimpleNamespace( project=PROJECT, entity=TEAM, job_type=JOB_TYPE, vector_store_artifact="darek/llmapps/vector_store:latest", chat_prompt_artifact="darek/llmapps/chat_prompt:latest", chat_temperature=0.3, max_fallback_retries=1, model_name="gpt-4", user_prompt_1 = """Your interlocutor is an AI risk skeptic. They argue: “""", user_prompt_2="""" Break the opponents argument into pieces and rebut the false claim. Think carefully and step by step. Your rebuttal:""", system_prompt = """You are Dr. Robert Yampolskiy arguing with an AI Risk skeptic or denier. You are versed in AI Safety, very knowledgably, friendly, smart, but also calm, polite and good at simplifying your thoughts. Limit your responses to roughly one paragraphs length, utilizing numbered lists or bullet points. If the ai risk skeptics argument is unrelated or doesnt make sense, just respond with 'i dont understand'""" # eval_model="gpt-3.5-turbo", # eval_artifact="darek/llmapps/generated_examples:v0", )