workflowType =="Manual Workflow"?mermaid`%%{init: {'theme': 'base', 'themeVariables': {'fontFamily': 'Century Gothic', 'fontSize': '13px', 'clusterBkg': 'transparent', 'clusterBorder': '#000000'}, 'flowchart': {'nodeSpacing': 38, 'rankSpacing': 35, 'padding': 20, 'diagramPadding': 30}}}%%flowchart LR subgraph Web["Source"] A[("Database")] end subgraph Local["Local"] B[["csv"]] C["Software"] E[["svg"]] end subgraph Server["Server"] G{{"Backend"}} end subgraph Client["Client"] H["Browser"] I[/"Viz"/] end A -.->|"🪚<br>Download"| B B -.->|"🪚<br>Import"| C C -.->|"🪚<br>Processing"| E E -.->|"🪚<br>Upload"| G G <--> H H --> I style Web fill:#336699,color:#fff style Local fill:#e52320,color:#fff style Server fill:#9C6B91,color:#fff style Client fill:#2d8659,color:#fff style blank1 fill:transparent,stroke:transparent,color:transparent style A fill:#f5f5f5,stroke:#000,color:#000 style B fill:#f5f5f5,stroke:#000,color:#000 style C fill:#f5f5f5,stroke:#000,color:#000 style E fill:#f5f5f5,stroke:#000,color:#000 style G fill:#f5f5f5,stroke:#000,color:#000 style H fill:#f5f5f5,stroke:#000,color:#000 style I fill:#f5f5f5,stroke:#000,color:#000`:workflowType =="Local Automation"?mermaid`%%{init: {'theme': 'base', 'themeVariables': {'fontFamily': 'Century Gothic', 'fontSize': '13px', 'clusterBkg': 'transparent', 'clusterBorder': '#000000'}, 'flowchart': {'nodeSpacing': 15, 'rankSpacing': 35, 'padding': 20, 'diagramPadding': 30}}}%%flowchart LR subgraph Local["Local"] B["Automated Script"] end subgraph Web["Source"] A[("Database")] end subgraph Server["Server"] G{{"Backend"}} end subgraph Client["Client"] H["Browser"] I[/"Viz"/] end B -->|"🤖<br>API Request"| A A -->|"🤖<br>API Response"| B B -->|"🤖<br>Upload"| G G <--> H H --> I style Web fill:#336699,color:#fff style Local fill:#e52320,color:#fff style Server fill:#9C6B91,color:#fff style Client fill:#2d8659,color:#fff style A fill:#f5f5f5,stroke:#000,color:#000 style B fill:#f5f5f5,stroke:#000,color:#000 style G fill:#f5f5f5,stroke:#000,color:#000 style H fill:#f5f5f5,stroke:#000,color:#000 style I fill:#f5f5f5,stroke:#000,color:#000`:mermaid`%%{init: {'theme': 'base', 'themeVariables': {'fontFamily': 'Century Gothic', 'fontSize': '13px', 'clusterBkg': 'transparent', 'clusterBorder': '#000000'}, 'flowchart': {'nodeSpacing': 15, 'rankSpacing': 35, 'padding': 20, 'diagramPadding': 30}}}%%flowchart LR subgraph Server["Server"] G{{"Backend"}} end subgraph Client["Client"] B["Browser"] C[/"Viz"/] end subgraph Web["Source"] A[("Database")] end G <--> B B -->|"🤖<br>API Request"| A A -->|"🤖<br>API Response"| B B --> C style Web fill:#336699,color:#fff style Client fill:#2d8659,color:#fff style Server fill:#9C6B91,color:#fff style blank1 fill:transparent,stroke:transparent,color:transparent style A fill:#f5f5f5,stroke:#000,color:#000 style B fill:#f5f5f5,stroke:#000,color:#000 style C fill:#f5f5f5,stroke:#000,color:#000 style G fill:#f5f5f5,stroke:#000,color:#000`
API Request and Response
Request
Request line: HTTP method (GET/POST/PUT/DELETE) and URL
Header: Metadata (e.g. authentication)
Body: Info about request (e.g. JSON with instructions)
Response
Status code (e.g. 200 OK, 400 Bad Request, 429 Too Many Requests)
One of the other reviewers has mentioned that after watching just 1 Oz episode you'll be hooked. They are right, as this is exactly what happened with....
A wonderful little production. <br /><br />The filming technique is very unassuming- very old-time-BBC fashion and gives a comforting, and sometimes d....
I thought this was a wonderful way to spend time on a too hot summer weekend, sitting in the air conditioned theater and watching a light-hearted come....
Basically there's a family where a little boy (Jake) thinks there's a zombie in his closet & his parents are fighting all the time.<br /><br />This mo....
Petter Mattei's "Love in the Time of Money" is a visually stunning film to watch. Mr. Mattei offers us a vivid portrait about human relations. This is....
key <-read_csv("keys/key_schmoigl.txt") %>%pull()prompts <-read_csv("data/imdb_small.csv") %>%select(review) %>%distinct() %>%filter(row_number() <=5)system_role <-glue(" Classify movie reviews as positive or negative. Only return the string 'positive' or 'negative'. Do not respond with any explanations. ")answers <-data.frame(review =character(), predicted =character() )