Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/ai/best-practices/prompting.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ final result = await _clueSolverModel.generateContent(

### Prompt versioning

arrange prompt files is to use [the Google dotprompt format][dotprompt], which allows you to write `.prompt` files that look like this:
This simple app keeps the prompt strings in code. This makes them hard to track down and update. For production apps, it’s better to keep your prompts separated from the code, perhaps bundled as Flutter assets. One way to arrange prompt files is to use [the Google dotprompt format][dotprompt], which allows you to write `.prompt` files that look like this:

```markdown
---
Expand Down