Skip to content

Commit ccd4123

Browse files
bokelleyclaude
andcommitted
docs: annotate test token in example as public
Add clarifying comments to indicate the auth_token in the example is a public test token, not a secret. This token is already used throughout the codebase in README.md and test files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 445b975 commit ccd4123

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/simple_api_demo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,13 @@ async def demo_production_client():
8585
# Create a production client
8686
from adcp import ADCPClient, AgentConfig, Protocol
8787

88+
# Note: This is a public test token for demo purposes
8889
client = ADCPClient(
8990
AgentConfig(
9091
id="my-agent",
9192
agent_uri="https://test-agent.adcontextprotocol.org/mcp/",
9293
protocol=Protocol.MCP,
93-
auth_token="1v8tAhASaUYYp4odoQ1PnMpdqNaMiTrCRqYo9OJp6IQ",
94+
auth_token="1v8tAhASaUYYp4odoQ1PnMpdqNaMiTrCRqYo9OJp6IQ", # Public test token
9495
)
9596
)
9697

0 commit comments

Comments
 (0)