Files
ai-agent-book/chapter1/context/tests/manual/check_doubao_quick.py
T
liqiang b119135836
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

61 lines
1.4 KiB
Python

#!/usr/bin/env python3
"""
Quick test with Doubao as default
"""
import os
import sys
import time
from _bootstrap import add_project_root
add_project_root()
# Set a very simple task to test quickly
task = "What is 10 + 5? Provide FINAL ANSWER with just the number."
print("="*60)
print("QUICK TEST - Doubao Default Provider")
print("="*60)
ark_key = os.getenv("ARK_API_KEY")
if not ark_key:
print("❌ ARK_API_KEY not set")
sys.exit(1)
from agent import ContextAwareAgent, ContextMode
# Create agent with default Doubao
agent = ContextAwareAgent(ark_key, ContextMode.FULL, provider="doubao")
print(f"✅ Using: {agent.provider} / {agent.model}")
print(f"\n📝 Task: {task}")
print("-"*40)
start = time.time()
print("Processing...")
try:
result = agent.execute_task(task, max_iterations=2)
elapsed = time.time() - start
print(f"\n✅ Completed in {elapsed:.2f} seconds")
if result.get('success'):
print(f"Success: True")
if result.get('final_answer'):
print(f"Answer: {result['final_answer']}")
else:
print(f"Success: False")
if result.get('error'):
print(f"Error: {result['error']}")
print(f"Iterations: {result.get('iterations', 0)}")
print(f"Tool calls: {len(result['trajectory'].tool_calls)}")
except KeyboardInterrupt:
print("\n⚠️ Interrupted")
except Exception as e:
print(f"\n❌ Error: {str(e)}")
print("="*60)