Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1 KB

45-expectations.ptbk.md

File metadata and controls

48 lines (34 loc) · 1 KB

✨ Sample: Expectations

%% 🔮 Tip: Open this on GitHub or in the VSCode website to see the Mermaid graph visually

flowchart LR
  subgraph "✨ Sample: Expectations"

      direction TB

      input((Input)):::input
      templateQuestion("💬 Question")
      input--"{yourName}"-->templateQuestion

      templateQuestion--"{greeting}"-->output
      output((Output)):::output

      classDef input color: grey;
      classDef output color: grey;

  end;
Loading

💬 Question

  • MODEL VARIANT Chat
  • MODEL NAME gpt-3.5-turbo
  • EXPECT MAX 30 CHARACTERS
  • EXPECT MIN 2 CHARACTERS
  • EXPECT MAX 3 WORDS
  • EXPECT EXACTLY 1 SENTENCE
  • EXPECT EXACTLY 1 LINE
Hello {yourName}!

-> {greeting}