- Add comprehensive CLI tool section with quick start guide and key features - Add "Earn Money with Your GPU" section highlighting provider benefits and success tips - Add CLI installation and usage examples for marketplace, agent management, and development - Add multi-language CLI support documentation - Add performance metrics section with response times, processing speed, and up
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
import subprocess
|
|
import re
|
|
|
|
def run_cmd(cmd):
|
|
print(f"Running: {' '.join(cmd)}")
|
|
result = subprocess.run(
|
|
cmd,
|
|
capture_output=True,
|
|
text=True
|
|
)
|
|
|
|
# Strip ANSI escape sequences
|
|
ansi_escape = re.compile(r'\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])')
|
|
clean_stdout = ansi_escape.sub('', result.stdout).strip()
|
|
|
|
print(f"Exit code: {result.returncode}")
|
|
print(f"Output:\n{clean_stdout}")
|
|
if result.stderr:
|
|
print(f"Stderr:\n{result.stderr}")
|
|
print("-" * 40)
|
|
|
|
print("=== LIVE DATA TESTING ON LOCALHOST ===")
|
|
|
|
# Local config to point to both nodes
|
|
subprocess.run(["rm", "-f", "/home/oib/.aitbc/multichain_config.yaml"])
|
|
subprocess.run(["/home/oib/windsurf/aitbc/cli/venv/bin/aitbc", "node", "add", "aitbc-primary", "http://10.1.223.93:8082"])
|
|
subprocess.run(["/home/oib/windsurf/aitbc/cli/venv/bin/aitbc", "node", "add", "aitbc1-primary", "http://10.1.223.40:8082"])
|
|
|
|
print("\n--- Testing from Localhost to aitbc (10.1.223.93) ---")
|
|
base_cmd = ["/home/oib/windsurf/aitbc/cli/venv/bin/aitbc", "--url", "http://10.1.223.93:8000/v1", "--api-key", "client_dev_key_1", "--output", "json"]
|
|
run_cmd(base_cmd + ["blockchain", "info"])
|
|
run_cmd(base_cmd + ["chain", "list"])
|
|
|
|
print("\n--- Testing from Localhost to aitbc1 (10.1.223.40) ---")
|
|
base_cmd1 = ["/home/oib/windsurf/aitbc/cli/venv/bin/aitbc", "--url", "http://10.1.223.40:8000/v1", "--api-key", "client_dev_key_1", "--output", "json"]
|
|
run_cmd(base_cmd1 + ["blockchain", "info"])
|
|
run_cmd(base_cmd1 + ["chain", "list"])
|