-
|
As AI becomes more common in Laravel apps, prompt management is getting complex. Do you store prompts:
How do you version and test prompts in production systems? |
Beta Was this translation helpful? Give feedback.
Answered by
blactelin
Feb 7, 2026
Replies: 1 comment 1 reply
-
|
I prefer storing prompts as PHP classes or markdown files in the repo. Each prompt:
For dynamic prompts, I sometimes store templates in the database, |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
blac98
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I prefer storing prompts as PHP classes or markdown files in the repo.
Each prompt:
For dynamic prompts, I sometimes store templates in the database,
but the base structure always lives in code.