SetPrompts sets the prompts for the inventory. Returns self for chaining.
(prompts []ServerPrompt)
| 77 | |
| 78 | // SetPrompts sets the prompts for the inventory. Returns self for chaining. |
| 79 | func (b *Builder) SetPrompts(prompts []ServerPrompt) *Builder { |
| 80 | b.prompts = prompts |
| 81 | return b |
| 82 | } |
| 83 | |
| 84 | // WithDeprecatedAliases adds deprecated tool name aliases that map to canonical names. |
| 85 | // Returns self for chaining. |
no outgoing calls