-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Title: Update Hedera AI Agent Kit Docs for Python SDK Release & JS SDK Changes
Path: /hedera/open-source-solutions/ai-studio-on-hedera/hedera-ai-agent-kit
Summary
Last week, the Python version of hedera-agent-kit was released. The repository and up-to-date documentation are available here:
https://github.com/hashgraph/hedera-agent-kit-py
The current Hedera Docs only cover the JavaScript SDK and are now partially outdated. This issue tracks required documentation updates for both:
- Introducing a separate set of articles for the Python SDK, and
- Updating existing JS SDK documentation to reflect recent changes.
This is a single umbrella issue that may be split into sub-issues if preferred.
Python SDK – New Documentation Needed
A separate documentation section should be created for the Python SDK (hedera-agent-kit-py). Key differences from the JS SDK that must be clearly documented:
-
Framework support
- Only
langchain(v1) andlangchain-classic(legacy, pre-v1) are currently supported.
- Only
-
Execution modes
- Only AUTONOMOUS mode is supported.
- Return bytes mode is still in development.
-
Tooling support
- Most tools from the JS SDK are supported, but some are missing.
- The authoritative list should reference:
https://github.com/hashgraph/hedera-agent-kit-py/blob/v3.0.0/docs/HEDERAPLUGINS.md
-
Repository & docs reference
- Primary source of truth:
https://github.com/hashgraph/hedera-agent-kit-py
- Primary source of truth:
JS SDK – Required Documentation Updates
The following sections in the existing docs need to be updated:
1. Installation & Initialization
- Update to reflect that both
langchainv1 andlangchain-classicare supported.
2. Create Your Agent
-
The current example still works, but:
- We now recommend using
langchainv1. - The docs should reflect the updated v1 example from the JS SDK README:
https://github.com/hashgraph/hedera-agent-kit-js/blob/main/README.md
- We now recommend using
3. Examples Section
- This section should link to (or be aligned with):
https://github.com/hashgraph/hedera-agent-kit-js/blob/main/docs/DEVEXAMPLES.md
4. Agent Kit Plugins
- There are new agent plugins that are not listed.
- The plugin list should be updated to match:
https://github.com/hashgraph/hedera-agent-kit-js/blob/main/docs/HEDERAPLUGINS.md
5. ElizaOS Toolkit Import Path Change
- The ElizaOS Toolkit path has changed.
- Docs referencing ElizaOS should mention change in the import path described here:
https://github.com/hashgraph/hedera-agent-kit-js/blob/main/docs/DEVEXAMPLES.md#option-e-try-out-the-hedera-agent-kit-with-elizaos
Acceptance Criteria (Suggested)
- New Python SDK documentation section added under the specified path
- JS SDK docs updated to reflect LangChain v1 support and recommendations
- Examples section updated or linked to
DEVEXAMPLES.md - Agent plugin list synchronized with the latest JS SDK plugins
- ElizaOS import paths corrected