49b9bb6724
Deploy Docs / deploy-docs (push) Failing after 1s
Conformance Tests / client-conformance (push) Failing after 3s
Conformance Tests / server-conformance (push) Failing after 1s
GitHub Actions Security Analysis / zizmor (push) Failing after 1s
CI / checks (push) Failing after 59m20s
CI / all-green (push) Waiting to run
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
"""Supply a canned sampling_callback and assert its text round-trips through the tool."""
|
|
|
|
from mcp_types import CreateMessageRequestParams, CreateMessageResult, TextContent
|
|
|
|
from mcp.client import Client, ClientRequestContext
|
|
from stories._harness import Target, run_client
|
|
|
|
|
|
async def on_sample(context: ClientRequestContext, params: CreateMessageRequestParams) -> CreateMessageResult:
|
|
# A real host would call its LLM provider here; the example returns a deterministic
|
|
# canned answer so the round-trip is assertable.
|
|
return CreateMessageResult(
|
|
role="assistant",
|
|
content=TextContent(text="[canned summary]"),
|
|
model="stub-model",
|
|
stop_reason="endTurn",
|
|
)
|
|
|
|
|
|
async def main(target: Target, *, mode: str = "auto") -> None:
|
|
async with Client(target, mode=mode, sampling_callback=on_sample) as client:
|
|
result = await client.call_tool("summarize", {"text": "hello world"})
|
|
|
|
assert not result.is_error, result
|
|
assert isinstance(result.content[0], TextContent)
|
|
assert result.content[0].text == "[canned summary]", result.content[0].text
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_client(main)
|