Back to Baml

Story

fern/snippets/baml/prompts/story.mdx

0.226.1387 B
Original Source
baml
class Story {
  title: string
  content: string
}

function WriteMeAStory(prompt: string) -> Story {
  client OpenAI
  prompt #"
    Act as a storyteller.

    { ctx.output_format }

    { _.role('user') }
    Once upon a time {prompt}
  "#
}

test WriteMeAStory {
  functions [WriteMeAStory]
  args {
    prompt "The Universe"
  }

}