MCPcopy Create free account
hub / github.com/AI45Lab/Code / with_response_style

Method with_response_style

core/src/prompts.rs:572–575  ·  view source on GitHub ↗

Set custom response style.

(mut self, style: impl Into<String>)

Source from the content-addressed store, hash-verified

570
571 /// Set custom response style.
572 pub fn with_response_style(mut self, style: impl Into<String>) -> Self {
573 self.response_style = Some(style.into());
574 self
575 }
576
577 /// Set extra instructions.
578 pub fn with_extra(mut self, extra: impl Into<String>) -> Self {

Calls

no outgoing calls