Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mermaid AI produces flow charts even when C4Context is specifically requested #83

Open
rough68fish opened this issue Aug 6, 2024 · 0 comments

Comments

@rough68fish
Copy link

Describe the bug
I ask the Mermaid AI for a C4Context diagram and the output is a flowchart

To Reproduce
Steps to reproduce the behavior:

  1. Enter "create a C4Context diagram for a photo upload service" into Mermaid AI
  2. Results:
flowchart TD
%% External User interacting with the system
    user(["User"])
    
%% System Boundary
    subgraph PhotoUploadService ["Photo Upload Service"]
        direction TB

        %% Components within the system
        web["Web Application"]
        api["API Gateway"]
        auth["Authentication Service"]
        storage["Photo Storage Service"]
        db["Database"]
    end

%% Interactions
    user -->|Uploads Photos| web
    web -->|Calls API| api
    api -->|Validates with Auth Service| auth
    api -->|Stores Photos| storage
    api -->|Interacts with DB| db

Expected behavior
I expected the generated visual to be a C4Context diagram.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant