File size: 13,390 Bytes
d5fd24d
 
 
8bc23f8
d5fd24d
 
85635d0
d5fd24d
8bc23f8
d5fd24d
 
85635d0
915e515
6f4a930
85635d0
8bc23f8
 
d5fd24d
8bc23f8
 
 
85635d0
8bc23f8
 
6f4a930
8bc23f8
 
 
d5fd24d
 
 
6f4a930
8bc23f8
d5fd24d
8bc23f8
d5fd24d
 
8bc23f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d5fd24d
 
 
8bc23f8
85635d0
 
 
 
 
 
d5fd24d
8bc23f8
85635d0
 
 
 
 
 
 
 
 
2960f9a
85635d0
 
 
 
 
 
 
2960f9a
85635d0
 
 
 
 
 
 
2960f9a
85635d0
 
2960f9a
85635d0
 
 
 
 
 
 
 
 
 
2960f9a
85635d0
 
 
 
 
2960f9a
85635d0
 
 
 
2960f9a
 
85635d0
 
d5fd24d
3b411be
 
 
8bc23f8
3b411be
8bc23f8
 
3b411be
8bc23f8
3b411be
 
 
 
 
 
 
 
 
 
85635d0
8bc23f8
85635d0
8bc23f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d5fd24d
915e515
8bc23f8
d5fd24d
8bc23f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
acabee3
 
 
8bc23f8
 
 
acabee3
8bc23f8
 
 
 
 
 
 
 
 
 
85635d0
8bc23f8
 
 
 
 
 
6f4a930
8bc23f8
6f4a930
acabee3
 
 
6f4a930
2960f9a
acabee3
6f4a930
 
 
 
 
 
acabee3
 
6f4a930
85635d0
 
3b411be
6f4a930
8bc23f8
2960f9a
8bc23f8
 
6f4a930
2960f9a
8bc23f8
 
6f4a930
2960f9a
6f4a930
 
 
 
2960f9a
8bc23f8
6f4a930
8bc23f8
 
acabee3
6f4a930
 
 
 
d5fd24d
6f4a930
2960f9a
8bc23f8
d5fd24d
8bc23f8
 
 
2960f9a
6f4a930
 
 
d5fd24d
2960f9a
 
8bc23f8
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import streamlit as st
import pandas as pd
import random
import json

# Set page configuration
st.set_page_config(page_title="ChatGPT Prompt Generator", page_icon="๐Ÿง ", layout="wide")

# Custom CSS for styling
st.markdown("""
<style>
    .main {background-color: #f8f9fa;}
    div[data-testid="stVerticalBlock"] {gap: 0.2rem;}
    div[data-testid="stHorizontalBlock"] {gap: 0.3rem;}
    .stTextArea textarea, .stTextInput input {
        padding: 0.3rem;
        font-size: 0.85em;
    }
    h1, h2, h3 {margin-top: 0; margin-bottom: 0.2rem;}
    p, div {margin-bottom: 0.1rem;}
    .category-header {
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 0.2rem;
        color: #333;
        background-color: #f1f8ff;
        padding: 3px 8px;
        border-radius: 4px;
    }
    .prompt-display {
        background-color: #ffffff;
        border-radius: 4px;
        padding: 12px;
        border: 1px solid #e9ecef;
        min-height: 150px;
        white-space: pre-wrap;
    }
    .st-emotion-cache-1nv1tyf {
        font-size: 0.85rem;
    }
    .dataframe-container {
        background-color: white;
        border: 1px solid #e6e6e6;
        border-radius: 4px;
        padding: 8px;
        margin-bottom: 8px;
    }
    .selected-item {
        background-color: #007bff !important;
        color: white !important;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 4px;
    }
    .unselected-item {
        background-color: #f8f9fa;
        padding: 2px 6px;
        border-radius: 4px;
        cursor: pointer;
    }
    .unselected-item:hover {
        background-color: #e9ecef;
    }
    table {
        font-size: 0.85rem;
    }
    .clickable {
        cursor: pointer;
    }
</style>
""", unsafe_allow_html=True)

# Initialize session state
if 'selections' not in st.session_state:
    st.session_state.selections = {
        'role': None, 'tone': None, 'instruction': None, 'length': None,
        'content_type': None, 'audience': None, 'format': None,
        'about': "", 'inclusion': "", 'exclusion': "", 'input_data': ""
    }

# Data sets with emoji and names
data = {
    'roles': [
        {"name": "Professional", "emoji": "๐Ÿ‘”"}, {"name": "Expert", "emoji": "๐Ÿง "},
        {"name": "Friend", "emoji": "๐Ÿค"}, {"name": "Copywriter", "emoji": "โœ๏ธ"},
        {"name": "Creative Writer", "emoji": "๐Ÿ–‹๏ธ"}, {"name": "Sales Coach", "emoji": "๐Ÿ’ผ"},
        {"name": "Marketing Coach", "emoji": "๐Ÿ“Š"}, {"name": "Tech Consultant", "emoji": "๐Ÿ’ป"},
        {"name": "Life Coach", "emoji": "๐Ÿง˜"}, {"name": "Data Analyst", "emoji": "๐Ÿ“ˆ"},
        {"name": "Influencer", "emoji": "๐Ÿ“ฑ"}, {"name": "Language Tutor", "emoji": "๐Ÿ—ฃ๏ธ"},
        {"name": "Fitness Trainer", "emoji": "๐Ÿ’ช"}, {"name": "Teacher", "emoji": "๐Ÿ‘จโ€๐Ÿซ"},
        {"name": "Therapist", "emoji": "๐Ÿง"}, {"name": "Detective", "emoji": "๐Ÿ”"}
    ],
    'tones': [
        {"name": "Informative", "emoji": "โ„น๏ธ"}, {"name": "Inspirational", "emoji": "โœจ"},
        {"name": "Humorous", "emoji": "๐Ÿ˜„"}, {"name": "Friendly", "emoji": "๐Ÿ˜Š"},
        {"name": "Professional", "emoji": "๐Ÿ‘”"}, {"name": "Casual", "emoji": "๐Ÿ‘‹"},
        {"name": "Persuasive", "emoji": "๐Ÿค"}, {"name": "Encouraging", "emoji": "๐Ÿ™Œ"},
        {"name": "Empathetic", "emoji": "๐Ÿค—"}, {"name": "Serious", "emoji": "๐Ÿ˜"},
        {"name": "Enthusiastic", "emoji": "๐Ÿคฉ"}, {"name": "Thoughtful", "emoji": "๐Ÿ’ญ"}
    ],
    'instructions': [
        {"name": "Create", "emoji": "๐Ÿ”จ"}, {"name": "Suggest", "emoji": "๐Ÿ’ก"},
        {"name": "Write", "emoji": "โœ๏ธ"}, {"name": "Compose", "emoji": "๐Ÿ“"},
        {"name": "Analyze", "emoji": "๐Ÿ”"}, {"name": "Explain", "emoji": "๐Ÿ“š"},
        {"name": "Describe", "emoji": "๐Ÿ”Ž"}, {"name": "Summarize", "emoji": "๐Ÿ“‹"},
        {"name": "Compare", "emoji": "โš–๏ธ"}, {"name": "Outline", "emoji": "๐Ÿ“‹"},
        {"name": "Evaluate", "emoji": "โญ"}, {"name": "List", "emoji": "๐Ÿ“‹"}
    ],
    'lengths': [
        {"name": "300 Words", "emoji": "๐Ÿ“"}, {"name": "500 Words", "emoji": "๐Ÿ“„"},
        {"name": "Short", "emoji": "๐Ÿฉณ"}, {"name": "Medium", "emoji": "๐Ÿ“Š"},
        {"name": "Long", "emoji": "๐Ÿ“œ"}, {"name": "Brief", "emoji": "๐Ÿ’จ"},
        {"name": "Detailed", "emoji": "๐Ÿ”Ž"}, {"name": "Comprehensive", "emoji": "๐Ÿ“š"}
    ],
    'content_types': [
        {"name": "Article", "emoji": "๐Ÿ“ฐ"}, {"name": "Blog post", "emoji": "๐Ÿ“"},
        {"name": "Guide", "emoji": "๐Ÿ“š"}, {"name": "Email", "emoji": "๐Ÿ“ง"},
        {"name": "Summary", "emoji": "๐Ÿ“‹"}, {"name": "Story", "emoji": "๐Ÿ“–"},
        {"name": "Essay", "emoji": "๐Ÿ“„"}, {"name": "Review", "emoji": "โญ"},
        {"name": "Tutorial", "emoji": "๐Ÿ‘จโ€๐Ÿซ"}, {"name": "Report", "emoji": "๐Ÿ“Š"},
        {"name": "Plan", "emoji": "๐Ÿ“†"}, {"name": "Script", "emoji": "๐ŸŽฌ"}
    ],
    'audiences': [
        {"name": "Beginners", "emoji": "๐ŸŒฑ"}, {"name": "Experts", "emoji": "๐Ÿง "},
        {"name": "Students", "emoji": "๐ŸŽ“"}, {"name": "Professionals", "emoji": "๐Ÿ‘”"},
        {"name": "Business Owners", "emoji": "๐Ÿ’ผ"}, {"name": "General Public", "emoji": "๐Ÿ‘ฅ"},
        {"name": "Developers", "emoji": "๐Ÿ’ป"}, {"name": "Children", "emoji": "๐Ÿ‘ถ"}
    ],
    'formats': [
        {"name": "Markdown", "emoji": "๐Ÿ“"}, {"name": "HTML", "emoji": "๐ŸŒ"},
        {"name": "Plain Text", "emoji": "๐Ÿ“„"}, {"name": "JSON", "emoji": "๐Ÿ”„"},
        {"name": "PDF", "emoji": "๐Ÿ“‘"}, {"name": "Python Code", "emoji": "๐Ÿ"},
        {"name": "JavaScript", "emoji": "๐Ÿ“œ"}, {"name": "SQL Query", "emoji": "๐Ÿ’พ"}
    ]
}

# Function to handle selection
def handle_selection(category, item):
    st.session_state.selections[category] = item

# Function to create category selection with buttons
def create_dataframe_category(category, title, emoji_prefix):
    st.markdown(f"<div class='category-header'>{emoji_prefix} {title}</div>", unsafe_allow_html=True)
    st.markdown("<div class='dataframe-container'>", unsafe_allow_html=True)
    
    cols = st.columns(4)
    for i, item in enumerate(data[f"{category}s"]):
        col = cols[i % 4]
        label = f"{item['emoji']} {item['name']}"
        is_selected = st.session_state.selections[category] == item
        with col:
            if st.button(label, key=f"{category}_{i}", 
                        type="primary" if is_selected else "secondary",
                        use_container_width=True):
                handle_selection(category, item)
    
    st.markdown("</div>", unsafe_allow_html=True)

# Function to generate the final prompt
def generate_prompt():
    sel = st.session_state.selections
    
    if not all([sel['role'], sel['tone'], sel['instruction'], sel['length'], 
               sel['content_type'], sel['audience'], sel['format'], sel['about']]):
        return "Please select all required components and provide a topic."
    
    prompt = f"""Act as a {sel['role']['emoji']} {sel['role']['name']}, use {sel['tone']['emoji']} {sel['tone']['name']} tone, {sel['instruction']['emoji']} {sel['instruction']['name']} a {sel['length']['emoji']} {sel['length']['name']} {sel['content_type']['emoji']} {sel['content_type']['name']} for {sel['audience']['emoji']} {sel['audience']['name']}.

It should be about {sel['about']}."""

    if sel['inclusion']:
        prompt += f"\nInclude {sel['inclusion']}."
    
    if sel['exclusion']:
        prompt += f"\nExclude {sel['exclusion']}."
    
    prompt += f"\n\nReturn the output as {sel['format']['emoji']} {sel['format']['name']}."
    
    if sel['input_data']:
        prompt += f"\nUse the following information: {sel['input_data']}"
    
    return prompt

# Header
st.markdown("<h2 style='text-align: center; font-size: 1.3rem; margin-bottom: 1rem;'>๐Ÿง  ChatGPT Prompt Generator</h2>", unsafe_allow_html=True)

# Main layout with two columns
col1, col2 = st.columns([3, 1])

with col1:
    create_dataframe_category("role", "Choose a Role", "๐Ÿ‘ค")
    create_dataframe_category("tone", "Select a Tone", "๐ŸŽญ")
    create_dataframe_category("instruction", "Select an Instruction", "๐Ÿ“")
    create_dataframe_category("length", "Select Length", "๐Ÿ“")
    create_dataframe_category("content_type", "Select Content Type", "๐Ÿ“„")
    create_dataframe_category("audience", "Select Target Audience", "๐Ÿ‘ฅ")
    create_dataframe_category("format", "Select Format", "๐Ÿ“‹")
    
    st.markdown("<div class='category-header'>๐Ÿ“Œ Additional Details</div>", unsafe_allow_html=True)
    st.markdown("<div class='dataframe-container'>", unsafe_allow_html=True)
    
    st.session_state.selections['about'] = st.text_input("๐Ÿ’ฌ Topic", 
                                                       value=st.session_state.selections['about'], 
                                                       placeholder="Enter what the content should be about")
    
    # Use a single-level column for Include/Exclude
    include_exclude_cols = st.columns(2)
    with include_exclude_cols[0]:
        st.session_state.selections['inclusion'] = st.text_input("โœ… Include", 
                                                              value=st.session_state.selections['inclusion'], 
                                                              placeholder="What to include in the content")
    with include_exclude_cols[1]:
        st.session_state.selections['exclusion'] = st.text_input("โŒ Exclude", 
                                                              value=st.session_state.selections['exclusion'], 
                                                              placeholder="What to exclude from the content")
    
    st.session_state.selections['input_data'] = st.text_area("๐Ÿ“Š Input Data", 
                                                          value=st.session_state.selections['input_data'], 
                                                          placeholder="Enter any specific information to use",
                                                          height=100)
    
    st.markdown("</div>", unsafe_allow_html=True)

with col2:
    prompt = generate_prompt()
    
    st.markdown("<div class='category-header'>๐Ÿ”ฎ Generated Prompt</div>", unsafe_allow_html=True)
    st.markdown("<div class='dataframe-container'>", unsafe_allow_html=True)
    st.markdown("<div class='prompt-display'>", unsafe_allow_html=True)
    st.write(prompt)
    st.markdown("</div>", unsafe_allow_html=True)
    
    # Define button columns at this level
    button_cols = st.columns(3)
    with button_cols[0]:
        if st.button("๐Ÿ“‹ Copy", type="primary", use_container_width=True):
            st.code(prompt, language="")
    with button_cols[1]:
        if st.button("๐Ÿ”„ Reset", type="secondary", use_container_width=True):
            for key in st.session_state.selections:
                if key in ['about', 'inclusion', 'exclusion', 'input_data']:
                    st.session_state.selections[key] = ""
                else:
                    st.session_state.selections[key] = None
            st.rerun()
    with button_cols[2]:
        if st.button("๐ŸŽฒ Random", type="secondary", use_container_width=True):
            for category in ['role', 'tone', 'instruction', 'length', 'content_type', 'audience', 'format']:
                st.session_state.selections[category] = random.choice(data[category+'s'])
            st.rerun()
    
    st.markdown("</div>", unsafe_allow_html=True)
    
    st.markdown("<div class='category-header'>๐Ÿ“š Examples</div>", unsafe_allow_html=True)
    st.markdown("<div class='dataframe-container'>", unsafe_allow_html=True)
    
    st.markdown("""
    <div style="background-color: #e6f3ff; border: 1px solid #b8daff; border-radius: 4px; padding: 6px; margin-bottom: 6px; font-size: 0.8em;">
        <b>๐Ÿ‘จโ€๐Ÿซ Teaching</b><pre style="white-space: pre-wrap; font-size: 0.8em; margin: 3px 0px;">Act as a ๐Ÿ‘จโ€๐Ÿซ Teacher, use ๐Ÿ“š Informative tone, Create a ๐Ÿ“‹ Guide for ๐ŸŒฑ Beginners.

It should be about Git.
Include practical examples.
Exclude advanced techniques.

Return as ๐Ÿ“ Markdown.</pre>
    </div>
    """, unsafe_allow_html=True)
    
    st.markdown("""
    <div style="background-color: #e6ffed; border: 1px solid #b8e6cc; border-radius: 4px; padding: 6px; margin-bottom: 6px; font-size: 0.8em;">
        <b>๐Ÿ’ผ Business</b><pre style="white-space: pre-wrap; font-size: 0.8em; margin: 3px 0px;">Act as a ๐Ÿ‘” Professional, use ๐Ÿค Persuasive tone, Write a ๐Ÿ“ง Email for ๐Ÿ’ผ Business Owners.

It should be about a product launch.
Include ROI metrics.
Exclude technical details.

Return as ๐Ÿ“„ Plain Text.</pre>
    </div>
    """, unsafe_allow_html=True)
    
    st.markdown("""
    <div style="background-color: #f1f8ff; border-radius: 4px; padding: 6px; margin-top: 6px; font-size: 0.8em;">
    <b>Prompt Structure:</b><br>
    Act as [<span style="color:blue">ROLE</span>], use [<span style="color:green">TONE</span>] tone, [<span style="color:red">INSTRUCTION</span>] a [<span style="color:purple">LENGTH</span>] [<span style="color:orange">CONTENT TYPE</span>] for [<span style="color:pink">AUDIENCE</span>].<br>
    It should be about [TOPIC].<br>
    Include [INCLUSION]. Exclude [EXCLUSION].<br>
    Return as [FORMAT].
    </div>
    """, unsafe_allow_html=True)
    
    st.markdown("</div>", unsafe_allow_html=True)