Whatever message this page gives is out now! Go check it out!
sampling – Indicates whether the client can handle sampling requests (LLM calls).roots – Indicates whether the client will manage resource roots for scoping.elicitation – Indicates whether the client can collect additional user input when requested by the server.
<cfscript>
configData = {
transport: { /* transport config */ },
capabilities: {
sampling: true, // Enable sampling requests
roots: true, // Enable root resource management
elicitation: true // Enable user input requests
}
};
</cfscript>
sampling = falseroots = falseelicitation = false