ea4all-gradio-agents-mcp-hackathon-tools-apm-upload
Browse files- ea4all/ea4all_mcp.py +10 -4
ea4all/ea4all_mcp.py
CHANGED
@@ -13,7 +13,13 @@ from ea4all.src.ea4all_apm.graph import apm_graph
|
|
13 |
from ea4all.src.ea4all_vqa.graph import diagram_graph
|
14 |
from ea4all.src.ea4all_gra.graph import togaf_graph
|
15 |
from ea4all.src.ea4all_indexer.graph import indexer_graph
|
16 |
-
from ea4all.src.shared.utils import
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
#from ea4all.src.pmo_crew.crew_runner import run_pmo_crew
|
19 |
|
@@ -275,7 +281,7 @@ with gr.Blocks(title="Your ArchitectGPT",fill_height=True, fill_width=True) as e
|
|
275 |
dbr_text=gr.TextArea(value="Provide a Business Problem / Requirement Specification or select an example provided.", lines=14, interactive=True)
|
276 |
with gr.Row():
|
277 |
dbr_file=gr.File(
|
278 |
-
value=
|
279 |
label="Business Requirement",
|
280 |
height=35,
|
281 |
show_label=False,
|
@@ -309,7 +315,7 @@ with gr.Blocks(title="Your ArchitectGPT",fill_height=True, fill_width=True) as e
|
|
309 |
with gr.Tab(label="Overview", id="how_to"):
|
310 |
gr.Markdown(value=TITLE)
|
311 |
gr.Image(
|
312 |
-
get_image(
|
313 |
show_download_button=False,
|
314 |
container=False,
|
315 |
show_share_button=False,
|
@@ -324,7 +330,7 @@ with gr.Blocks(title="Your ArchitectGPT",fill_height=True, fill_width=True) as e
|
|
324 |
)
|
325 |
podcast = gr.Audio(
|
326 |
type="filepath",
|
327 |
-
value=os.path.join(BaseConfiguration.ea4all_store,
|
328 |
label="EA4ALL Journey Podcast",
|
329 |
show_download_button=False,
|
330 |
autoplay=False,
|
|
|
13 |
from ea4all.src.ea4all_vqa.graph import diagram_graph
|
14 |
from ea4all.src.ea4all_gra.graph import togaf_graph
|
15 |
from ea4all.src.ea4all_indexer.graph import indexer_graph
|
16 |
+
from ea4all.src.shared.utils import (
|
17 |
+
get_relevant_questions,
|
18 |
+
get_vqa_examples,
|
19 |
+
_join_paths,
|
20 |
+
CFG.EA4ALL_ARCHITECTURE,
|
21 |
+
CFG.EA4ALL_PODCAST,
|
22 |
+
)
|
23 |
|
24 |
#from ea4all.src.pmo_crew.crew_runner import run_pmo_crew
|
25 |
|
|
|
281 |
dbr_text=gr.TextArea(value="Provide a Business Problem / Requirement Specification or select an example provided.", lines=14, interactive=True)
|
282 |
with gr.Row():
|
283 |
dbr_file=gr.File(
|
284 |
+
value=_join_paths(BaseConfiguration.ea4all_store, gra.dbr_mock),
|
285 |
label="Business Requirement",
|
286 |
height=35,
|
287 |
show_label=False,
|
|
|
315 |
with gr.Tab(label="Overview", id="how_to"):
|
316 |
gr.Markdown(value=TITLE)
|
317 |
gr.Image(
|
318 |
+
get_image(EA4ALL_ARCHITECTURE),
|
319 |
show_download_button=False,
|
320 |
container=False,
|
321 |
show_share_button=False,
|
|
|
330 |
)
|
331 |
podcast = gr.Audio(
|
332 |
type="filepath",
|
333 |
+
value=os.path.join(BaseConfiguration.ea4all_store, EA4ALL_PODCAST),
|
334 |
label="EA4ALL Journey Podcast",
|
335 |
show_download_button=False,
|
336 |
autoplay=False,
|