| 644 | } |
| 645 | |
| 646 | type GetPromptParams struct { |
| 647 | // This property is reserved by the protocol to allow clients and servers to |
| 648 | // attach additional metadata to their responses. |
| 649 | Meta `json:"_meta,omitempty"` |
| 650 | // Arguments to use for templating the prompt. |
| 651 | Arguments map[string]string `json:"arguments,omitempty"` |
| 652 | // The name of the prompt or prompt template. |
| 653 | Name string `json:"name"` |
| 654 | } |
| 655 | |
| 656 | func (x *GetPromptParams) isParams() {} |
| 657 | func (x *GetPromptParams) GetProgressToken() any { return getProgressToken(x) } |
nothing calls this directly
no outgoing calls
no test coverage detected