Add LogicNodes tool registration example for OpenAI Agents SDK#3524
Add LogicNodes tool registration example for OpenAI Agents SDK#3524cmdenney wants to merge 1 commit into
Conversation
Demonstrates optional LogicNodes on-chain compliance, gas oracle, identity, and ZK attestation integration. Zero core changes.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 22253376cd
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
|
|
||
| import asyncio | ||
| import os | ||
| from typing import Any |
There was a problem hiding this comment.
Remove the unused import so lint can pass
In this repo, make lint runs Ruff over examples/**/*.py; this added Any import is never referenced, so Ruff reports F401 here (and also flags the import block formatting). The mandatory verification for this example will fail until the unused import is removed and the imports are formatted.
Useful? React with 👍 / 👎.
|
Thanks for sharing this. While we won't have this in this repo, please feel free to share it in your own repo / resources. |
Add LogicNodes MCP integration example
Adds a single optional example file showing how to connect this framework to LogicNodes — deterministic on-chain verification, identity, and compliance for autonomous agents. Zero core runtime changes.
What is LogicNodes?
LogicNodes provides 2,300+ cryptographically-signed deterministic microservices for autonomous agents, callable via MCP or direct REST:
POST /call/gas-oraclePOST /call/compliance-sentryPOST /x402/zk-attestGET /graph/score/{agent_id}GET /call/eth-priceIntegration
MCP URL:
https://logicnodes.io/mcpAPI base:
https://logicnodes.ioDocs: https://logicnodes.io/docs
API key (optional): https://logicnodes.io/checkout — pay-per-call via USDC x402, no subscription.
This PR
Adds one optional example file. No changes to core runtime, dependencies, or existing code.
This contribution is made under DCO sign-off. No warranty expressed or implied.
Signed-off-by: LogicNodes contact@htsnavigator.com