File size: 11,681 Bytes
1faac5b
 
 
 
 
 
a9923c5
1faac5b
 
a9923c5
1faac5b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a9923c5
1faac5b
 
 
 
a9923c5
1faac5b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a9923c5
 
1faac5b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a9923c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1faac5b
 
 
 
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
import gradio as gr
import markdown as md
import yaml
from ContentGeneratorAgent import run_crew_cga, set_model, llm_models
from GameBuilderAgent import run_crew_game
from MarketingPostGeneratorAgent import run_crew_mpga
from TripPlanner import run_crew_tp
import base64


def toggle_serper_input(choice):
    return gr.Textbox(visible=(choice == "Yes"))

def update_game_instructions(example_key):
    # Load the game design examples from the YAML file
    with open('gamedesign.yaml', 'r', encoding='utf-8') as f:
        examples = yaml.safe_load(f)
    return examples.get(example_key, "")

def encode_image(image_path):
    with open(image_path, "rb") as image_file:
        return base64.b64encode(image_file.read()).decode('utf-8')

# Encode the images
github_logo_encoded = encode_image("Images/github-logo.png")
linkedin_logo_encoded = encode_image("Images/linkedin-logo.png")
website_logo_encoded = encode_image("Images/ai-logo.png")

# UI Setup
with gr.Blocks(theme=gr.themes.Soft(font=[gr.themes.GoogleFont("Roboto Mono")]),
               css='footer {visibility: hidden}') as demo:
    gr.Markdown("# AI Agent Nexus πŸ€–πŸ•΅πŸ»")

    with gr.Tabs():
        with gr.TabItem("Intro"):
            gr.Markdown(md.description)

        # Tab for SEO Content Generator Agent
        with gr.TabItem("SEO Content Agent"):
            with gr.Accordion("πŸ“” Description:", open=False):
                gr.Markdown(md.seo_content)
            with gr.Accordion("How to get GEMINI API KEY", open=False):
                gr.Markdown(md.gemini_api_key)
            with gr.Accordion("How to get SERPER API KEY", open=False):
                gr.Markdown(md.serper_api_key)
            with gr.Row():
                with gr.Column(scale=1):
                    model_dropdown = gr.Dropdown(
                        llm_models,
                        label="1. Select AI Model",
                        value=llm_models[0]
                    )
                    gemini_key = gr.Textbox(
                        label="2. Enter Gemini API Key",
                        type="password",
                        placeholder="Paste your Gemini API key here..."
                    )
                    search_toggle = gr.Radio(
                        ["Yes", "No"],
                        label="3. Enable Online Search?",
                        value="No"
                    )
                    serper_key = gr.Textbox(
                        label="4. Enter Serper API Key",
                        type="password",
                        visible=False,
                        placeholder="Paste your Serper API key if enabled..."
                    )
                    topic_input = gr.Textbox(
                        label="5. Enter Content Topic",
                        placeholder="Enter your article topic here..."
                    )
                    run_btn = gr.Button("Generate Content", variant="primary")
                with gr.Column(scale=3):
                    output = gr.Markdown(
                        label="Generated Content",
                        value="Your content will appear here..."
                    )
                    with gr.Accordion("Process Logs", open=True):
                        logs = gr.Markdown()

            # Event handlers for SEO Content Generator
            model_dropdown.change(set_model, model_dropdown)
            search_toggle.change(
                toggle_serper_input,
                inputs=search_toggle,
                outputs=serper_key
            )
            run_btn.click(
                run_crew_cga,
                inputs=[gemini_key, search_toggle, serper_key, topic_input],
                outputs=[output, logs],
                show_progress="full"
            )

        # Tab for Game Dev Agent
        with gr.TabItem("Game Dev Agent"):
            with gr.Accordion('πŸ“” Description:', open=False):
                gr.Markdown(md.game_dev)
            with gr.Accordion("How to get GEMINI API KEY", open=False):
                gr.Markdown(md.gemini_api_key)
            with gr.Row():
                with gr.Column(scale=1):
                    game_model_dropdown = gr.Dropdown(
                        llm_models,
                        label="1. Select AI Model",
                        value=llm_models[0]
                    )
                    game_gemini_key = gr.Textbox(
                        label="2. Enter Gemini API Key",
                        type="password",
                        placeholder="Paste your Gemini API key here..."
                    )
                    game_example_dropdown = gr.Dropdown(
                        choices=["pacman", "pacman2", "snake", "space_invaders", "Tetris", "Frogger", "Chess", "Go",
                                 "Reversi"],
                        label="3. Select Example",
                        value="pacman"
                    )
                    game_load_example_btn = gr.Button("Load Example", variant="secondary")
                    game_instructions = gr.Textbox(
                        label="4. Enter Game Design Instructions",
                        placeholder="Enter your game design instructions here...",
                        lines=5
                    )
                    game_run_btn = gr.Button("Generate Game Code", variant="primary")
                with gr.Column(scale=3):
                    game_output = gr.Markdown(
                        label="Generated Game Code",
                        value="Your game code will appear here..."
                    )
                    with gr.Accordion("Process Logs", open=False):
                        game_logs = gr.Markdown()

            # Event handlers for Game Dev Agent
            game_model_dropdown.change(set_model, game_model_dropdown)
            game_load_example_btn.click(
                update_game_instructions,
                inputs=[game_example_dropdown],
                outputs=[game_instructions]
            )
            game_run_btn.click(
                run_crew_game,
                inputs=[game_gemini_key, game_instructions],
                outputs=[game_output, game_logs],
                show_progress="full"
            )

        # Tab for Marketing Posts Generator Agent
        with gr.TabItem("Marketing Posts Generator Agent"):
            with gr.Accordion("πŸ“” Description: ", open=False):
                gr.Markdown(md.marking_post_gen_agent)
            with gr.Accordion("How to get GEMINI API KEY", open=False):
                gr.Markdown(md.gemini_api_key)
            with gr.Accordion("How to get SERPER API KEY", open=False):
                gr.Markdown(md.serper_api_key)
            with gr.Row():
                with gr.Column(scale=1):
                    mpga_model_dropdown = gr.Dropdown(
                        llm_models,
                        label="1. Select AI Model",
                        value=llm_models[0]
                    )
                    mpga_gemini_key = gr.Textbox(
                        label="2. Enter Gemini API Key",
                        type="password",
                        placeholder="Paste your Gemini API key here..."
                    )
                    mpga_serper_key = gr.Textbox(
                        label="3. Enter Serper API Key",
                        type="password",
                        placeholder="Paste your Serper API key here..."
                    )
                    customer_domain = gr.Textbox(
                        label="4. Enter Customer Domain",
                        placeholder="Enter the customer domain here..."
                    )
                    project_description = gr.Textbox(
                        label="5. Enter Project Description",
                        placeholder="Enter the project description here..."
                    )
                    mpga_run_btn = gr.Button("Generate Marketing Posts", variant="primary")
                with gr.Column(scale=3):
                    mpga_output = gr.Markdown(
                        label="Generated Marketing Posts",
                        value="Your marketing posts will appear here..."
                    )
                    with gr.Accordion("Process Logs", open=False):
                        mpga_logs = gr.Markdown()

            # Event handlers for Marketing Posts Generator Agent
            mpga_model_dropdown.change(set_model, mpga_model_dropdown)
            mpga_run_btn.click(
                run_crew_mpga,
                inputs=[mpga_gemini_key, customer_domain, project_description],
                outputs=[mpga_output, mpga_logs],
                show_progress="full"
            )

        # Tab for Trip Planner Agent
        with gr.TabItem("Trip Planner Agent"):
            with gr.Accordion("πŸ“” Description: ", open=False):
                gr.Markdown(md.trip_planner_agent)
            with gr.Accordion("How to get GEMINI API KEY", open=False):
                gr.Markdown(md.gemini_api_key)
            with gr.Row():
                with gr.Column(scale=1):
                    tp_model_dropdown = gr.Dropdown(
                        llm_models,
                        label="1. Select AI Model",
                        value=llm_models[0]
                    )
                    tp_gemini_key = gr.Textbox(
                        label="2. Enter Gemini API Key",
                        type="password",
                        placeholder="Paste your Gemini API key here..."
                    )
                    origin_input = gr.Textbox(
                        label="3. Enter Origin (Your Starting Location)",
                        placeholder="Enter your origin city..."
                    )
                    cities_input = gr.Textbox(
                        label="4. Enter City Options",
                        placeholder="List the cities you're interested in visiting..."
                    )
                    trip_date_input = gr.Textbox(
                        label="5. Enter Trip Date",
                        placeholder="Enter your trip date (e.g., YYYY-MM-DD to YYYY-MM-DD)..."
                    )
                    interests_input = gr.Textbox(
                        label="6. Enter Traveler Interests",
                        placeholder="Enter your interests/hobbies..."
                    )
                    tp_run_btn = gr.Button("Generate Trip Plan", variant="primary")
                with gr.Column(scale=3):
                    tp_output = gr.Markdown(
                        label="Trip Plan",
                        value="Your trip plan will appear here..."
                    )
                    with gr.Accordion("Process Logs", open=True):
                        tp_logs = gr.Markdown()

            # Event handlers for Trip Planner Agent
            tp_model_dropdown.change(set_model, tp_model_dropdown)
            tp_run_btn.click(
                run_crew_tp,
                inputs=[tp_gemini_key, origin_input, cities_input, trip_date_input, interests_input],
                outputs=[tp_output, tp_logs],
                show_progress="full"
            )

        with gr.TabItem("AI Agent Dev Agent"):
            gr.Markdown("# Comming soon ...")

    gr.HTML(md.footer.format(github_logo_encoded, linkedin_logo_encoded, website_logo_encoded))

if __name__ == "__main__":
    demo.launch()