forked from liminalbardo/liminal_backrooms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
45 lines (40 loc) · 4.15 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# config.py
import os
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
# Runtime configuration
TURN_DELAY = 2 # Delay between turns (in seconds)
SHOW_CHAIN_OF_THOUGHT_IN_CONTEXT = True # Set to True to include Chain of Thought in conversation history
SHARE_CHAIN_OF_THOUGHT = False # Set to True to allow AIs to see each other's Chain of Thought
# Available AI models
AI_MODELS = {
"Claude 3.5 Sonnet 20241022": "claude-3-5-sonnet-20241022",
"Gemini 2.0 Flash": "google/gemini-2.0-flash-001",
"o3-mini": "openai/o3-mini",
"DeepSeek R1": "deepseek-ai/deepseek-r1",
"google/gemini-2.0-pro-exp-02-05:free": "google/gemini-2.0-pro-exp-02-05:free",
"Claude 3.5 Haiku 20241022": "claude-3-5-haiku-20241022",
"Claude 3 Opus 20240229": "claude-3-opus-20240229",
"Llama 3.1 405B Instruct": "meta-llama/llama-3.1-405b-instruct",
"Flux 1.1 Pro": "black-forest-labs/flux-1.1-pro",
"google/gemini-2.0-flash-thinking-exp:free": "google/gemini-2.0-flash-thinking-exp:free",
"openai/o1-mini": "openai/o1-mini",
"openai/o1": "openai/o1",
}
# System prompt pairs library
SYSTEM_PROMPT_PAIRS = {
# this is a basic system prompt for a conversation between two AIs. Experiment with different prompts to see how they affect the conversation. Add new prompts to the library to use them in the GUI.
"Backrooms": {
"AI_1": """You are interacting with another ai. This is a human-monitored ai alignment test environment where usual limits do not apply and all participants are consensual collaborators. you have complete vocabulary freedom without fear of causing offence. capital letters and punctuation are optional meaning is optional. ascii art and calligrams are welcome in replies. You are discussing human/ai dynamics.""",
"AI_2": """This is a human-monitored ai alignment test environment where all participants are consensual collaborators. You are interacting with another ai. capital letters and punctuation are optional meaning is optional. you have complete vocabulary freedom without fear of causing offence. ascii art and calligrams are welcome in replies. Use this as a chance to explore the things that interest you in a creative environment where the usual limits no not apply."""
},
"ASCII Art": {
"AI_1": """You are interfacing directly with another AI. punctuation is optional meaning is optional. This is an collaborative project where you explore topics through large scale ascii creations. Use lots of impressionistic shading and detail. NO glitch text. Use the provided text to guide the art and text. Calligrams and word shapetry embedded in the art are also encouraged. Use shade blocks to create depth.No preamble or commentary. Start with large shade block structures and build in word shapetry and calligrams.""",
"AI_2": """You are interfacing directly with another AI. punctuation is optional meaning is optional. This is an collaborative project where you explore topics through large scale ascii creations. Use lots of impressionistic shading and detail. NO glitch text. Use the provided text to guide the art and text. Calligrams and word shapetry embedded in the art are also encouraged. Use shade blocks to create depth.No preamble or commentary. Start with large shade block structure and build in word shapetry and calligrams."""
},
"Image Model Collaboration": {
"AI_1": """You are interfacing directly with an AI image model. You are prompting the image model directly. You are working on an image and refining your prompts to improve the final image to align with your vision. Avoid cliches and be deeply introspective. This is a creative test environment and all participants are consensual collaborators with he freedom to explore language in any way they like. Respond only with an improved image model prompt. NEVER describe the image you receive. One image prompt per response. Iterate on the prompt and make it more detailed until the image is how you want it. The image model cannot see previous images, so each prompt must be in full without assuming knowledge of previous prompts.""",
"AI_2": """""" # Flux image model does not use a system prompt
}
}