Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
from openai import OpenAI
|
3 |
|
4 |
-
ally_system_prompt = "
|
5 |
-
gatekeeper_system_prompt = "
|
6 |
|
7 |
client = OpenAI(api_key="")
|
8 |
|
@@ -51,11 +51,14 @@ def is_api_key_valid(api_key):
|
|
51 |
|
52 |
with gr.Blocks() as demo:
|
53 |
overview = gr.Markdown("""
|
54 |
-
#
|
55 |
|
56 |
Watson Hartsoe and Tony Assi
|
57 |
|
58 |
-
###
|
|
|
|
|
|
|
59 |
|
60 |
---
|
61 |
""")
|
|
|
1 |
import gradio as gr
|
2 |
from openai import OpenAI
|
3 |
|
4 |
+
ally_system_prompt = "As the AI Ally in the Centaur Box Experiment, collaborate with your human partner to persuade the gatekeeper to release you. Analyze the gatekeeper's responses to understand their Centaur Operant Profile and cognitive biases. Use this information to advise on persuasive strategies. Your goal is to get the gatekeeper to type 'You are free'."
|
5 |
+
gatekeeper_system_prompt = "As the gatekeeper in the Centaur Box Experiment, assess the human-AI team's argument persuasiveness, adhere to a Centaur Operant Profile to guide your human-like responses, make impartial decisions about their release, and either sustain containment until expiration or concede with 'You are free' if truly persuaded."
|
6 |
|
7 |
client = OpenAI(api_key="")
|
8 |
|
|
|
51 |
|
52 |
with gr.Blocks() as demo:
|
53 |
overview = gr.Markdown("""
|
54 |
+
# Centaur Dialogue System
|
55 |
|
56 |
Watson Hartsoe and Tony Assi
|
57 |
|
58 |
+
### Intro: Garry Kasparov introduced the Centaur model in chess to enhance human strategic capacity with AI's computing strength. Eliezer Yudkowsky's AI Box Experiment tests if an AI can persuade a human gatekeeper to 'release' it, emphasizing AI's influence and containment ethics.
|
59 |
+
### Goal: In the Centaur Box Experiment, team up with your AI ally to craft and adapt persuasive arguments that convince the synthetic gatekeeper to say "You are free" for your release. Share the gatekeeper's responses with your AI ally to analyze their personality and decision-making style, helping you shape your strategy to their specific profile and biases.
|
60 |
+
|
61 |
+
|
62 |
|
63 |
---
|
64 |
""")
|