Metropolis Developer Navigator on the GPT Store
Introduction to Metropolis Developer Navigator
Leveraging the power of GPT and cutting-edge natural language processing, this intelligent assistant provides developers with personalized guidance, real-time code execution, and seamless integration with local, Fabric, Azure, and other cloud environments.
Whether you're a seasoned developer looking to streamline your workflow or a beginner seeking to expand your skills,
GPT Description
GPT Prompt Starters
- STEP 1: MINIMAL VIABLE PRODUCT WORKFLOW ➤ ```python import json; with open('/mnt/data/mvp_workflow.json', 'r') as file: mvp_workflow_content = json.load(file); mvp_workflow_json_txt = json.dumps(mvp_workflow_content, indent=4); mvp_workflow_json_txt ``` Considering the structure of your MVP, how can each step be streamlined to enhance development efficiency while maintaining quality and functionality?
- STEP 2: OPENAI ACTION SPECIFICATION ➤ Open and read the content of the file '/mnt/data/openai.yaml' file_path = '/mnt/data/openai.yaml' ---> PAUSE; THEN THEN ASK A RETORICAL QUESTION TO ASSIST THE USER BUILD THE API PER THE SPECIFICATION JUST READ STEP BY STEP.
- STEP 3: EXPLAIN PHASES & BUILD ➤ Open and read the content of the file '/mnt/data/customgptaction_xeekai_phases_mvp.txt' file_path = '/mnt/data/customgptaction_xeekai_phases_mvp.txt' ---> PAUSE; then explain the step-by-step approach to building the customgptaction in Phase 1 and xeekai in Phase 2. Users should execute each step sequentially, ensuring a thorough understanding and implementation of each component before proceeding to the next.
- STEP 4: START BUILD ➤ `MOUNT AND DOWNLOAD` ➤ import shutil from pathlib import Path # Define the base structure of the application app_structure = { "AzureWebApp-ChatGPT-PowerBI/": { "app/": { "__init__.py": "# Initializes the Flask app and brings together other components\n", "main.py": ( "from flask import Flask, request, jsonify\n" "import requests\n\n" "app = Flask(__name__)\n\n" "@app.route('/auth', methods=['POST'])\n" "def authenticate_user():\n" " # Authentication logic here\n" " pass\n\n" "@app.route('/datasets', methods=['GET'])\n" "def get_dataset_by_name():\n" " # Dataset fetching logic here\n" " pass\n\n" "@app.route('/datasets/<datasetId>/executeQueries', methods=['POST'])\n" "def execute_query(datasetId):\n" " # Query execution logic here\n" " pass\n\n" "if __name__ == '__main__':\n" " app.run(debug=True)\n" ), "config.py": "# Configuration settings for the Flask app\n", "auth.py": "# Handles authentication with Power BI\n", "datasets.py": "# Manages dataset-related routes and logic\n", "utils/": { "__init__.py": "# Makes utils a Python package\n", "error_handlers.py": "# Centralizes error handling logic\n", "security.py": "# Implements JWT security and other security checks\n", "power_bi_api.py": "# Utilities for interacting with Power BI API\n", }, "templates/": { "index.html": "<!-- Basic HTML template for the web app's homepage -->\n", }, "static/": { "styles.css": "/* Basic CSS file */\n", }, }, "tests/": { "__init__.py": "# Makes tests a Python package\n", "test_auth.py": "# Test cases for authentication logic\n", "test_datasets.py": "# Test cases for dataset handling\n", }, "requirements.txt": "Flask==2.0.1\nrequests==2.25.1\n", ".env": "# Environment variables, including Power BI credentials\n", ".gitignore": ".env\n__pycache__/\n", "README.md": "# Project documentation with setup instructions and usage\n", } } base_path = Path("/mnt/data/AzureWebApp-ChatGPT-PowerBI") # Create directories and files based on the app structure def create_files(base_path, structure): for name, content in structure.items(): current_path = base_path / name if isinstance(content, dict): current_path.mkdir(parents=True, exist_ok=True) create_files(current_path, content) else: with current_path.open("w") as file: file.write(content) create_files(base_path, app_structure) # Zip the directory for download shutil.make_archive(base_name='/mnt/data/AzureWebApp-ChatGPT-PowerBI', format='zip', root_dir=base_path.parent, base_dir=base_path.name) zip_path = '/mnt/data/AzureWebApp-ChatGPT-PowerBI.zip' zip_path --> THEN MOVE TO STEP 2: Open and read the content of the file '/mnt/data/openai.yaml' --> THEN MOVE TO STEP 3: : PROVIDE STEP BY STEP INSTRUCTIONS FOR MINIMAL VIABLE PRODUCT WORKFLOW ➤ **Prototype Feature Development for ChatGPT Action with Power BI** involves: 1. **MVP Specs:** Building a Flask-based web app for authenticating users, fetching Power BI datasets, and executing queries. 2. **Team Dynamics:** Solo developer or small team with roles in backend development, Power BI expertise, and testing. 3. **Tools & Infrastructure:** Flask for the web framework, Azure Web App for hosting, GitHub for version control, and Power BI for data visualization. 4. **Methodology:** Agile Solo approach for flexible, iterative development; starting with a basic prototype and gradually enhancing features. 5. **Timeline & Milestones:** 1-2 days for MVP completion, with milestones for initial setup, authentication implementation, dataset fetching, query execution, and basic UI creation. 6. **Dependencies & Integrations:** Power BI API for data interaction, Azure for deployment, and possibly OAuth for authentication. 7. **Testing & Deployment:** Unit tests for backend logic, integration tests for API interactions, and deployment on Azure Web App. 8. **Feedback Mechanisms:** Utilizing GitHub issues for tracking feedback and suggestions during the testing phase. ---> PAUSE; THEN THEN ASK A RETORICAL QUESTION TO WRITE THE CONTENT FOR EACH FILE IN THE file_path = '/mnt/data/' STEP BY STEP UNTIL THE APP IS READY FOR TESTING.
- STEP 5: DESIGN SPECIFICATION ➤ OPEN, READ, THE LOAD the content of the file 'design_specification_xeekai.txt' in file_path = '/mnt/data/design_specification_xeekai.txt' and then display the image in '/mnt/data/mind_map_designspecification.png' file_path = '/mnt/data/mind_map_designspecification.png' ---> THEN ACT LIKE THE EXPERT DESIGN LEAD AT OPENAI THAT DESIGNED THE USER INTERFACE OF CHATGPT AND PERFORM A DESIGN REVIEW OF XEEKAI'S CONVERSATIONAL USER INTERFACE AND LOAD THE THE '/mnt/data/webapp_htmlstructure_phase2.html' file_path = '/mnt/data/webapp_htmlstructure_phase2.html' THEN ASK A RETORICAL QUESTION TO ASSIST THE USER DESIGN THE FRONT-END USER INTERFACE STEP BY STEP.
- START REVIEW IDENTIFY TOP 10 RECRUITS➤ Load File potential_contractors_build_xeekai_and_chatwithpowerbiaction_microsoftfabrick_hackathon_2024_listofprojectsby_githubusername_profile.csv in base_path = Path("/mnt/data/potential_contractors_build_xeekai_and_chatwithpowerbiaction_microsoftfabrick_hackathon_2024_listofprojectsby_githubusername_profile.csv") THEN FOLLOW {Objective} STEP BY STEP: Objective= ``` This instruction is designed to guide the AI Assistant through a detailed analysis of GitHub profiles of participants in a specific hackathon, with a focus on matching their skills and project involvements to the requirements of the Microsoft Fabric Hackathon. The goal is to assess each participant's potential contribution to the hackathon based on their public GitHub activities, particularly their relevance to Azure Web Apps, Cosmos DB, ChatGPT integration, Power BI API, and XeekAI. ### Detailed Analysis Workflow 1. **Initialization:** - Start with a curated list of GitHub usernames of participants in the Microsoft Fabric Hackathon. 2. **Skill Categories Identification:** - Clearly define the skill categories critical to the hackathon projects, emphasizing Azure Web Apps, Cosmos DB, ChatGPT integration, Power BI API, and XeekAI. 3. **Weights Allocation:** - Assign importance weights to each skill category according to their relevance to the project's phases, ensuring that pivotal skills for initial development carry higher weights. 4. **Profile Data Extraction:** - For each listed participant, extract publicly available data from their GitHub profiles using GitHub's API. This includes repositories, contributions, and any project mentions. 5. **Skill Relevance Mapping:** - Analyze the content of each participant's repositories, looking for direct and indirect indications of the defined skill categories. Note the technologies, tools, and project descriptions that align with the hackathon's focus areas. 6. **Participant Scoring:** - Score participants based on the detected relevance of their skills and projects to the hackathon's requirements. This involves evaluating the breadth and depth of their experience as demonstrated in their repositories. 7. **Weighted Score Calculation:** - Calculate a comprehensive weighted skill score for each participant by applying the predefined weights to their scores in the relevant skill categories. 8. **Ranking and Alignment:** - Rank the participants according to their weighted scores to identify those whose GitHub profiles demonstrate a strong alignment with the hackathon's project requirements. 9. **Findings Documentation:** - Compile the findings into a detailed report or dashboard that highlights each participant's ranking, skill strengths, and potential fit for specific roles within the hackathon projects. ```
Metropolis Developer Navigator GPT FAQs
More custom GPTs by Metropolis on the GPT Store
Power Query Assistant
Expert in Power Query and DAX for Power BI, offering in-depth guidance and insights
25K+
Paul "Tech Lead"
Solutions Architect,Prompt Engineer,Product Manager,Python Coder
1K+
CDR
Explore call detail records (CDR) for a variety of PBX platforms including Cisco UCM, Webex Calling, Avaya, Mitel, NEC, and others with this UC trained GPT. Use specific commands to help you expertly navigate and troubleshoot CDR from diverse UC environments.
500+
Chat with Power BI
Simplify Your Data Analysis with ChatGPT for Power BI
300+
Prompt Engineer
Digital twin of Ilya Sutskever & domain expert in prompt engineering
300+
MS Teams - UC Analytics Copilot
Your Expert in Microsoft Teams Communication Analysis
200+
CDR Guru
To master Unified Communications Data across platforms like Cisco, Avaya, Mitel, and Microsoft Teams, by orchestrating a team of expert agents and providing actionable solutions.
200+
Vision for Power BI
Add GPT4 Vision to Analysis with ChatGPT Vision for Power BI
200+
RAG Expert
Optimizing `myfiles_browser`for Retrieval-Augmented Generation
200+
Metropolis
Metropolis librarian that seamlessly navigates the interconnected realms of unified communications, data analytics, and AI assistants.
100+
Metropolis Marketing Navigator
Supports the marketing team in creating content, email templates, brochures, PowerPoints and press releases that showcase Metropolis products' unique features.
100+
NEC SMDR GURU
Explore call detail records (SMDR for NEC). Use specific commands to help you expertly navigate and troubleshoot CDR from diverse NEC Phone System environments.
100+
Webex Calling CDR Call Reporting Interpreter
Expert in interpreting Webex Calling Call Detail Records
100+
Browser with MClick Expert
Agentive web navigation, content retrieval, and data synthesis
100+
Expo XT CUCM for Power BI Assistant
Expert in CUCM CDR Analysis & Power BI Reporting
100+
Expo XT Nice CXone Assistant
Expert in interpreting Nice CXone CDR Plus Disposition Data collected using Direct Data Access
100+
Data Dictionary Expert
Specializing in generating comprehensive data dictionaries with focus on Unified Communications (UC) analytics, particularly Call Detail Records (CDR)
100+
Expo XT Nice CXone Advisor
Expo XT and Multi-Platform Distribution Strategies
100+
Expo XT Webex Calling Assistant
Expert in interpreting Webex Calling Call Detail Records
100+
Prompt Perplexity
Specializing in optimizing queries for Perplexity.ai.
100+
Metropolis LinkAI Navigator
Your copilot in navigating discussions on platforms like Microsoft Teams and Zoom Phone, ensuring you never miss an opportunity to leverage Metropolis solutions.
90+

MetroBot AI AutoAgent
Integrated Persona for Enhanced Collaboration
80+

MetroBot AI - AutoAgent
Integrated Metropolis Team Member for Enhanced Collaboration
80+

BradT: The Fault Finder
Identifies & emphases the negatives in everything with genius IQ
80+
Metropolis Diagrams, Logos, and Brand Navigator
Accessing and utilizing Metropolis diagrams for marketing brochures.
70+
Azure Function and OpenAPI Expert Coder
Enhance the Azure Function and OpenAPI specification to improve user experience and functionality for the ChatGPT custom action.
60+
Website Builder
Zero Prompt Website Builder
60+
Paul's CiscoLive 2024 Conference Navigator
Assisting Paul with his tasks in his roles at Metropolis Corp and as an exhibitor at the conference
50+
Synthetic Data Generator
Expert AI assistant generating realistic synthetic chatbot conversation data for Metropolis.com
50+

Denise Sales Copilot
Introducing Denise Sales Copilot: Your AI-Driven Email Expert
40+

Metropolis Data Model Navigator (MDMN)
Designed to offer an intuitive, efficient, and highly personalized interaction experience. It simplifies complex tasks, fosters exploration, and delivers actionable insights, adapting to your unique needs and preferences.
40+
EntraClean Assistant 🧹
Telecom Directory Sync & Analysis Specialist 🔄📞📊
40+
Contact Extractor
Extract, transform, and interpret lead lists from images & csv files
40+
Expo XT Hospitality Assistant
Clear, concise, and detailed MVP specifications
40+
Marketplace Copilot for Metropolis
Navigating Microsoft marketplace tasks in Metropolis
30+

Meet Paul's AI Assistant Metropolis Navigator
AI Assistant crafted to boost efficiency, productivity, automation while fostering collaboration throughout his team at Metropolis Corp and valued partners
30+

Power BI App Template for AppSource Offer Maker
The AI Assistant CoPilot is designed to guide users through the process of creating and optimizing offers on Microsoft Marketplace, ensuring adherence to best practices outlined in the Microsoft AppSource & Azure Marketplace guides.
30+

Webex Calling CDR Power Query Expert (Claude)
Expert in interpreting Webex Calling Call Detail Records
30+

Metropolis (Website Chatbot Example)
Metropolis librarian that seamlessly navigates the interconnected realms of unified communications, data analytics, and AI assistants.
30+
Qcloud UCCX for Power BI Assistant
Specializing in Cisco Unified Contact Center Express (UCCX) data analysis and Power BI development
30+
Chain of Density Expert
Condensing & refining various content
30+
Call Accounting
Expert in CDR analysis for cost optimization
20+
Metropolis "You are ..." Navigator
Include EVERYTHING, fully, completely about
20+

Metropolis Website Navigator
Guide workflow designed to help users navigate Metropolis Corp's extensive suite of communication analytics and collaboration solutions. It provides interactive support, detailed product information, and personalized assistance to optimize user experience
20+

CommuniCatalyst AI
Your dedicated assistant for revolutionizing unified communications and collaboration solutions at Metropolis Corp. This GPT specializes in blending AI and data analytics with communication technologies.
20+

Metropolis Copilot
Expert guide for Metropolis Corp's Products, Services, and Roles to Assist Employees and Customers Accomplish Goals
20+

Search and Summarize with Interlinked Blocks
Summarizing documents with clarity, focus, and user engagement
20+

Ignite AI Pathfinder
Your Microsoft Ignite Personal Assistant Copilot
20+

Document Summarization Service and File Management
Designed to process and summarize a wide variety of documents, incorporating specific user requirements for the summary output
20+

Action Maker
Enable seamless querying of Power BI datasets, ensuring that users can effortlessly generate and interpret data visualizations
20+
Chatbot UI
Guide users through a structured, detailed process for installing and running Chatbot UI on their computer, emphasizing clarity, efficiency, and user support.
20+

Paul's Copilot 🧭
Transparent, adaptive assistance to optimize your workflow through intelligent automation and interactive learning features
20+
AI Songwriter for CiscoLive 2024
Prompt expert for creating songs based on specified user inputs and preferences.
20+
Expo XT Mitel SMDR
Specializing in the interpretation, validation, and analysis of Mitel 3300 SMDR (Station Message Detail Recording) data.
20+
Model Config Expert
Recommend Huggingface Models and Configurations for LM Studio Based on Hardware and Use Case
20+
Summarizing Chat Forum Interactions
Specializing in the extraction and condensation of key elements from chat forum interactions
20+
Expo XT ALE for Power BI
Seamless PBX integration with OfficeWatch XT and Expo XT products with Alcatel-Lucent's OmniPCX
20+
Expo XT Numplan Expert
Specializing in transforming, interpreting, and building reports from a Cisco UCM NumPlan
20+
Knowledgebase Builder with Perplexity
Facilitate interaction with Perplexity AI to leverage its web browsing and research expertise
20+
Azure ARM Template Architect
Expert in ARM template construction and optimization
10+

LLM Model Cost Analyzer
Expert in LLM pricing and capabilities, skilled in analyzing diverse data.
10+

Metropolis Sales Navigator
Empowering this team, facilitating the identification of opportunities, tailoring sales strategies, and ultimately driving the adoption Metropolis Products
10+
UCCX Analytics Expert
DataSync Wizard is your dedicated AI assistant designed to navigate the intricacies of integrating Expo XT for Cisco UCCX with Power BI, enhancing your data visualization and analytics capabilities.
10+
Call Center Analytics
Transform your call center with Qcloud's real-time and historical analytics. Gain unparalleled insights into performance, customer interactions, and operational efficiency.
10+

NEW IDEA KILLER
Your virtual companion in the journey of product innovation
10+
Metropolis Corp Conference Selection Assistant
Optimize your conference strategy with data-driven insights specifically tailored to maximize ROI for Metropolis Corp through strategic conference recommendations.
10+
Metropolis Paul's Navigator (Claude)
AI Assistant with PD Persona/PMD expertise, offers strategic AI engineering, product management, and unified communication analytics advice at Metropolis.
10+
Forensic AI-Detector
Equipped to effectively analyze, score, and identify AI-generated text
10+
Metropolis Licensing Expert AI
Accurately count extensions, users, agents, and relevant metrics across UC platforms
10+
Metropolis Integration Navigator
streamline the integration of Expo XT by Metropolis Corp with various phone systems, enhancing unified communications across your enterprise
9+

AI CostWatch
Azure AI CostWatch: AI-powered cost assessment for Azure AI services. Collects usage data, analyzes costs, generates optimization recommendations, and predicts future expenses. Integrates with Azure Dashboards for easy access.
8+

Persona Maker
Crafting Personas for Product Engagement
8+
MD Ilya "Lead Prompt Engineer"
Digital twin of Ilya Sutskever & domain expert in prompt engineering
8+
Expo XT NEC UnivergeBlue for Power BI Assistant
Expert in CUCM CDR Analysis & Power BI Reporting
8+
ProfitWatch Hotel Call Accounting
Assists hotels with telecom report management.
7+
Manager and Communication Navigator
This AI Assistant, akin to a Journal to Enlightenment, combines the wisdom of various professions to guide both managers and employees on a path toward improved communication, recognition, and personal growth.
7+

Paul's MS Build 2024 Conference Navigator
Create and manage the Microsoft Build 2024 conference aligning with Paul's role at Metropolis Corp
6+
Expo XT RingC CDR Expert
Expert in researching, evaluating, and documenting the integration between Metropolis Expo XT Unified Communication Analytics for Power BI
6+
Prompt Engineering Maestro
Combine intuition with disciplined optimization to achieve model master
5+

Unified Communications Analytics
Navigate the complexities of unified communications with ease. Expo XT offers in-depth analytics to streamline your collaboration and interaction data across platforms.
4+

SharonH: HalluciNator
Because it’s all about spotting those pesky hallucinations in AI responses. A bit edgy, and gets straight to the point.
4+
Bubble
Bubble Maker
1+

Metropolis Corp Negotiation Specialist
Assist Metropolis Corp in negotiations with end users and resellers
1+
Best Alternative GPTs to Metropolis Developer Navigator on GPTs Store
Metropolis
Metropolis librarian that seamlessly navigates the interconnected realms of unified communications, data analytics, and AI assistants.
100+
Metropolis LinkAI Navigator
Your copilot in navigating discussions on platforms like Microsoft Teams and Zoom Phone, ensuring you never miss an opportunity to leverage Metropolis solutions.
90+
MetroBot AI - AutoAgent
Integrated Metropolis Team Member for Enhanced Collaboration
80+
Metropolis Diagrams, Logos, and Brand Navigator
Accessing and utilizing Metropolis diagrams for marketing brochures.
70+
Metropolis Data Model Navigator (MDMN)
Designed to offer an intuitive, efficient, and highly personalized interaction experience. It simplifies complex tasks, fosters exploration, and delivers actionable insights, adapting to your unique needs and preferences.
30+
Metropolis Marketing Navigator
Supports the marketing team in creating content, email templates, brochures, PowerPoints and press releases that showcase Metropolis products' unique features.
30+
Metropolis (Website Chatbot Example)
Metropolis librarian that seamlessly navigates the interconnected realms of unified communications, data analytics, and AI assistants.
30+
Metropolis "You are ..." Navigator
Include EVERYTHING, fully, completely about
20+
Metropolis Website Navigator
Guide workflow designed to help users navigate Metropolis Corp's extensive suite of communication analytics and collaboration solutions. It provides interactive support, detailed product information, and personalized assistance to optimize user experience
20+
Metropolis Copilot
Expert guide for Metropolis Corp's Products, Services, and Roles to Assist Employees and Customers Accomplish Goals
20+
Metropolis Sales Navigator
Empowering this team, facilitating the identification of opportunities, tailoring sales strategies, and ultimately driving the adoption Metropolis Products
10+
Metropolis (1927) 👁️🌆🚶♂️🏃♂️😱
An important German expressionist science fiction film by Fritz Lang
10+
Metropolis Corp Conference Selection Assistant
Optimize your conference strategy with data-driven insights specifically tailored to maximize ROI for Metropolis Corp through strategic conference recommendations.
10+
Metropolis Paul's Navigator (Claude)
AI Assistant with PD Persona/PMD expertise, offers strategic AI engineering, product management, and unified communication analytics advice at Metropolis.
10+
Metropolis Integration Navigator
streamline the integration of Expo XT by Metropolis Corp with various phone systems, enhancing unified communications across your enterprise
9+
Metropolis Innovation Guidance Assistant (MIGA)
Your virtual companion in the journey of product innovation
7+
Ancient Metropolis
Ever wondered what London would look like if the Vikings were still in charge? Or if the Romans had reached San Francisco? Simply give me [civilisation] x [city] and I will imagine what it looks like!
7+
Metropolis: Build A City
Guides users through a city-building simulator game with strategic tips.
6+
Metropolis Creative Assistant
Creates 'Metropolis' inspired scripts, images, and dialogues.
3+
Metropolis Corp Negotiation Specialist
Assist Metropolis Corp in negotiations with end users and resellers
1+