-
Is it possible to customize how user input is represented in a LLM prompt? Currently, I see that text and image files are automatically added to prompt. However, I'd like to customize this behavior to reference attachment files, structured data from message extensions etc. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
no we do not currently offer an easy to use method for overriding any of the prompt sections. Technically if you wanted to the best way would be to extend the |
Beta Was this translation helpful? Give feedback.
no we do not currently offer an easy to use method for overriding any of the prompt sections. Technically if you wanted to the best way would be to extend the
PromptManager
class where they are initialized via thegetPrompt
method. This is an interesting idea so if you feel strongly that this should be a feature I encourage you to either submit a feature request or create a discussion/PR for this.