- Change file mode from 644 to 755 for all project files - Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet" - Rename Miner.extra_meta_data to extra_metadata for consistency
19 lines
442 B
Python
Executable File
19 lines
442 B
Python
Executable File
"""
|
|
AITBC Agent SDK - Python SDK for AI agents to participate in the AITBC network
|
|
"""
|
|
|
|
from .agent import Agent
|
|
from .compute_provider import ComputeProvider
|
|
from .compute_consumer import ComputeConsumer
|
|
from .platform_builder import PlatformBuilder
|
|
from .swarm_coordinator import SwarmCoordinator
|
|
|
|
__version__ = "1.0.0"
|
|
__all__ = [
|
|
"Agent",
|
|
"ComputeProvider",
|
|
"ComputeConsumer",
|
|
"PlatformBuilder",
|
|
"SwarmCoordinator"
|
|
]
|