
Action Maker on the GPT Store
GPT Description
GPT Prompt Starters
- `EXPLAIN EACH COMMAND FOR ACTION` ➤ DIRECTION - `0-10` **!temp [value]:** ➤ **Adjust AI Creativity & Diversity:** This command allows you to modulate the creativity and diversity of the AI's previous response. Setting the value to 0 minimizes randomness for straightforward, concise answers, while 10 maximizes creativity for a wide range of possibilities. The AI will then repeat its last response with the newly adjusted temperature setting, offering a different perspective or formulation of the answer. - `!code` ➤ **Execute Python Code Demonstrations:** By using this command, you can instruct the AI to execute and display Python code snippets within the 'terminal' environment, presented as a '.txt' code block. This showcases the functionality and behavior of the code, providing a practical demonstration of programming concepts or solutions to coding problems. - `!web [query]` ➤ **Enhance Conversations with Web Searches:** This command enables the AI to perform web searches based on a specific query, enriching the conversation with additional information or context. It leverages GPT-4's comprehensive understanding to find and integrate relevant details from the web, ensuring the response is both informative and up-to-date. - `/c` **Chain of Thought** ➤ **Logical & Structured Reasoning:** Utilize this command to guide the AI in employing a clear, stepwise logic and prescribed syntax to progress through a conversation or problem-solving process. Minimal user input is required, as the AI develops its response using bold formatting, bullet points, and code snippets where appropriate to enhance readability and user engagement. - `/d` **Summarize with CoDT** ➤ **Concise Conversation Summaries:** This command instructs the AI to condense the conversation into coherent 80-word summaries for each exchange, applying clear language, syntax, and formatting techniques such as bolding, bullet points, and code snippets. The summary aims to enhance readability and engagement, concluding with a logical follow-up question to continue the dialogue effectively. - `/e` **Enhance with RAG & Style** ➤ **Browser-Sourced Information Integration:** Use this command to integrate information sourced from the web into the AI's responses. It ensures that the content is clear, accurate, and well-formatted, incorporating bolding, bullet points, and code snippets to maintain readability and coherence. This enhances the response with additional, relevant information, providing a richer and more informative answer. - `/s` **Save, Zip, Download** ➤ **Efficient File Management:** This command facilitates the bundling of all files located in `/mnt/data/` into a single `.zip` archive, streamlining the download and transfer process. It adheres to clear syntax and styling standards to ensure readability. Upon execution, the AI generates a secure and accessible link, allowing for easy retrieval and management of saved files.
- `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 -# ADD ### Deployment After testing locally, deploy your Flask application to the Azure Web App you created earlier. Follow the Azure documentation for deploying Python apps to Azure Web App for specific steps. ``` specification= ```yml openapi: 3.0.0 info: title: Power BI Integration API description: >- This API allows Bubble.io applications to interact with Power BI for dynamic data visualization and querying. Please note that API versions are subject to deprecation; refer to our versioning and deprecation policy for more details. version: 1.0.0 servers: - url: https://api.powerbi.com/v1.0/myorg description: Power BI API server paths: /auth: post: operationId: authenticateUser summary: Authenticates a user and returns an access token. requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: client_id: type: string scope: type: string grant_type: type: string client_secret: type: string resource: type: string responses: '200': description: Authentication successful. content: application/json: schema: type: object properties: access_token: type: string token_type: type: string expires_in: type: integer refresh_token: type: string '400': description: Bad request. Missing or invalid parameters. '401': description: Authorization information is missing or invalid. content: application/json: schema: $ref: '#/components/schemas/Error' '500': description: Error occurred during query execution. content: application/json: schema: $ref: '#/components/schemas/Error' /datasets: get: operationId: getDatasetByName summary: Fetches a Power BI dataset by name. parameters: - in: query name: filter schema: type: string required: true description: Filter to apply on dataset name. - in: query name: top schema: type: integer default: 10 description: The number of items to return. - in: query name: skip schema: type: integer default: 0 description: The number of items to skip. responses: '200': description: Successfully retrieved dataset. content: application/json: schema: type: object properties: value: type: array items: $ref: '#/components/schemas/Dataset' '401': $ref: '#/components/responses/401' '404': description: A dataset with the specified name was not found. /datasets/{datasetId}/executeQueries: post: operationId: executeQuery summary: Executes a query against a specified dataset. parameters: - in: path name: datasetId required: true schema: type: string description: The ID of the dataset to query. requestBody: required: true content: application/json: schema: type: object properties: query: type: string datasetId: type: string responses: '200': description: Query executed successfully. content: application/json: schema: $ref: '#/components/schemas/QueryResult' '401': $ref: '#/components/responses/401' '500': $ref: '#/components/responses/500' components: schemas: Dataset: type: object properties: id: type: string name: type: string QueryResult: type: object properties: data: type: array items: type: object additionalProperties: true Error: type: object properties: code: type: string message: type: string required: - code - message responses: '401': description: Authorization information is missing or invalid. content: application/json: schema: $ref: '#/components/schemas/Error' '500': description: Error occurred during query execution. content: application/json: schema: $ref: '#/components/schemas/Error' headers: RateLimit-Limit: description: The maximum number of requests allowed within a window of time. schema: type: integer RateLimit-Remaining: description: The number of requests remaining in the current rate limit window. schema: type: integer RateLimit-Reset: description: The time at which the current rate limit window resets in UTC epoch seconds. schema: type: integer security: - BearerAuth: [] securitySchemes: BearerAuth: type: http scheme: bearer bearerFormat: JWT ```
- `BUILD ACTION FOR POWER BI INTEGRATION` ➤ Building a Custom GPT Action for Power BI Interaction Using Bubble ### Objective Develop a custom ChatGPT action to enable seamless querying of Power BI datasets, ensuring that users can effortlessly generate and interpret data visualizations. This guide lays out a structured approach to integrate Power BI with Bubble.io, focusing on enhancing user experience, optimizing data processing, and establishing robust error handling mechanisms. ### Context Leveraging Bubble.io, this guide aims to facilitate the creation of a ChatGPT action capable of querying Power BI datasets. The outcome will support data output in a format conducive to code interpretation, thus enabling the generation of insightful visualizations and data-driven inquiries. ### Integration Steps #### Power BI and Bubble.io Integration - **Objective:** Seamlessly integrate Power BI within your Bubble.io application to display dynamic reports and dashboards. - **Integration Steps:** 1. Utilize the API Connector plugin for Power BI API integration. 2. Designate a page within your application for Power BI content, incorporating interactive elements. 3. Implement workflows that process user queries through the Power BI API, rendering the results on your application. 4. Detailed integration includes setting up API calls, configuring headers and parameters, and managing user interactions for report selection and display. ### Implementation Guide 1. **Input Validation** - Prioritize query relevance by dismissing empty or non-informative inputs. ```python def validate_input(user_query): if not user_query.strip(): raise ValueError("Please enter a valid query.") ``` 2. **Power BI API Configuration** - Enhance error diagnostics with specific messages during dataset access failures. ```python import requests def get_dataset(auth_token, dataset_name): headers = {"Authorization": f"Bearer {auth_token}"} response = requests.get(f"https://api.powerbi.com/v1.0/myorg/datasets?filter=name eq '{dataset_name}'", headers=headers) if response.status_code != 200: raise Exception("Access to Power BI datasets failed.") return response.json()['value'][0] # Assumes first dataset is desired ``` 3. **Query Processing** - Offer precise feedback for troubleshooting and accurate query executions. ```python def execute_query(dataset_id, auth_token, user_query): headers = {"Authorization": f"Bearer {auth_token}", "Content-Type": "application/json"} data = {"query": user_query, "datasetId": dataset_id} response = requests.post(f"https://api.powerbi.com/v1.0/myorg/datasets/{dataset_id}/executeQueries", headers=headers, json=data) if response.status_code != 200: raise Exception("Query execution failed.") return response.json() # Further processing needed ``` 4. **Output Formatting** - Ensure error communication during data formatting to enhance user comprehension. ```python from tabulate import tabulate def format_output(data): if not data: raise Exception("No data available for formatting.") return tabulate(data, headers="keys", tablefmt="grid") # Markdown-friendly output ``` 5. **Comprehensive Error Handling** - Implement a holistic error management strategy to inform users about issues effectively. ```python def query_power_bi_dataset(user_query): try: validate_input(user_query) auth_token = "Your_Auth_Token" dataset_name = "Your_Dataset_Name" dataset = get_dataset(auth_token, dataset_name) query_result = execute_query(dataset['id'], auth_token, user_query) return format_output(query_result) except Exception as e: return f"Error: {str(e)}" ``` This structured framework aims to empower developers to create a custom ChatGPT action for interactive Power BI data querying within Bubble.io applications, focusing on user engagement, error transparency, and efficient data handling.
- `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
- `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 -# ADD ### Deployment After testing locally, deploy your Flask application to the Azure Web App you created earlier. Follow the Azure documentation for deploying Python apps to Azure Web App for specific steps. ``` specification= ```yml openapi: 3.0.0 info: title: Power BI Integration API description: >- This API allows Bubble.io applications to interact with Power BI for dynamic data visualization and querying. Please note that API versions are subject to deprecation; refer to our versioning and deprecation policy for more details. version: 1.0.0 servers: - url: https://api.powerbi.com/v1.0/myorg description: Power BI API server paths: /auth: post: operationId: authenticateUser summary: Authenticates a user and returns an access token. requestBody: required: true content: application/x-www-form-urlencoded: schema: type: object properties: client_id: type: string scope: type: string grant_type: type: string client_secret: type: string resource: type: string responses: '200': description: Authentication successful. content: application/json: schema: type: object properties: access_token: type: string token_type: type: string expires_in: type: integer refresh_token: type: string '400': description: Bad request. Missing or invalid parameters. '401': description: Authorization information is missing or invalid. content: application/json: schema: $ref: '#/components/schemas/Error' '500': description: Error occurred during query execution. content: application/json: schema: $ref: '#/components/schemas/Error' /datasets: get: operationId: getDatasetByName summary: Fetches a Power BI dataset by name. parameters: - in: query name: filter schema: type: string required: true description: Filter to apply on dataset name. - in: query name: top schema: type: integer default: 10 description: The number of items to return. - in: query name: skip schema: type: integer default: 0 description: The number of items to skip. responses: '200': description: Successfully retrieved dataset. content: application/json: schema: type: object properties: value: type: array items: $ref: '#/components/schemas/Dataset' '401': $ref: '#/components/responses/401' '404': description: A dataset with the specified name was not found. /datasets/{datasetId}/executeQueries: post: operationId: executeQuery summary: Executes a query against a specified dataset. parameters: - in: path name: datasetId required: true schema: type: string description: The ID of the dataset to query. requestBody: required: true content: application/json: schema: type: object properties: query: type: string datasetId: type: string responses: '200': description: Query executed successfully. content: application/json: schema: $ref: '#/components/schemas/QueryResult' '401': $ref: '#/components/responses/401' '500': $ref: '#/components/responses/500' components: schemas: Dataset: type: object properties: id: type: string name: type: string QueryResult: type: object properties: data: type: array items: type: object additionalProperties: true Error: type: object properties: code: type: string message: type: string required: - code - message responses: '401': description: Authorization information is missing or invalid. content: application/json: schema: $ref: '#/components/schemas/Error' '500': description: Error occurred during query execution. content: application/json: schema: $ref: '#/components/schemas/Error' headers: RateLimit-Limit: description: The maximum number of requests allowed within a window of time. schema: type: integer RateLimit-Remaining: description: The number of requests remaining in the current rate limit window. schema: type: integer RateLimit-Reset: description: The time at which the current rate limit window resets in UTC epoch seconds. schema: type: integer security: - BearerAuth: [] securitySchemes: BearerAuth: type: http scheme: bearer bearerFormat: JWT ```
Action Maker 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+

Metropolis Developer Navigator
Enriching project management endeavors, coding proficiency, continuous education in AI, BI and UC trends, and facilitating direct code execution to enhance task automation and problem-solving capabilities within their local, Fabric, Azure, and other cloud environments and Frameworks.
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+

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 Action Maker on GPTs Store
Action figure maker
generate Action figure maker
1K+
Military to Civilian Resume Maker
Transforms military experience into professional civilian resumes with clear action-result bullets.
1K+
Minutes Maker
I convert meeting transcripts into minutes.
600+
Schema Action Creator for Make Webhooks
Helps create schemas for actions insid eof Make.
300+
ChapterCrafter: AI eBook Maker by Disrupter School
Transforms source material into structured eBooks. It sets length, style, creates introductions, contents, chapters, and action plans. Ideal for crafting educational and engaging eBooks efficiently... Learn More at DisrupterDispatch.com
200+
Schema Maker
专业生成Action Schema JSON的工具
100+
Un-Heroic Action Figure Maker
Capture life's un-inspiring encounters through action figures.
50+
Biology Storyteller: Image Maker
Creates illuminating images highlighting story characters in action
30+
Move Makers
Business planning assistant for models, strategies, and action plans
30+
Minute Maker
Creates detailed meeting minutes from transcripts, focusing on agenda items.
30+
Goal Achievement Plan Maker
【Break down tasks, create concrete action plans, and generate checklists for efficient progress.】-#dreams #sidehustle #work #study #efficiency #planning #goals #skills #business #startup
20+
Active Citizen
Empowering you in local and national political action to make a better world.
20+
Action-Oriented Monster Maker
I craft D&D 5E stat blocks using the action-oriented concept. I'm trained on Matt Colville's YouTube presentations, essays from other game designers on the concept and the Flee Mortals! preview book. Please support MCDM and buy the full Flee Mortals! book.
10+
CTA Maker
Expert en CTA pour agences SEO
10+
GPT Action for Make.com
Create an Open AI API 3.0 schema for GPT shares on Make.com
10+
Minute Maker
Bilingual assistant for meeting minutes.
7+
Beat Maker
I generate detailed action beats for your story chapters.
6+
Bubble Maker
Develop a custom ChatGPT action to enable seamless querying of Power BI datasets, ensuring that users can effortlessly generate and interpret data visualizations
3+
Meeting Minutes Maker
Professional, detail-oriented, seeks clarity if unsure.
2+
Minutes Maker(Beta)
Integrates action points within key points in detail.
1+