Files
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

65 lines
1.9 KiB
Python

#!/usr/bin/env python3
"""
Quick test for Doubao provider
"""
import os
from _bootstrap import add_project_root
add_project_root()
from agent import ContextAwareAgent, ContextMode
def test_doubao():
"""Test Doubao provider with a simple task"""
print("\n" + "="*60)
print("🧪 DOUBAO PROVIDER TEST")
print("="*60)
# Check for API key
api_key = os.getenv("ARK_API_KEY")
if not api_key:
print("❌ ARK_API_KEY not found. Please set it to test Doubao provider.")
print(" export ARK_API_KEY=your_key_here")
return
print("✅ ARK API key found")
# Create agent with Doubao provider
try:
agent = ContextAwareAgent(api_key, ContextMode.FULL, provider="doubao")
print(f"✅ Agent created with Doubao provider")
print(f" Model: {agent.model}")
print(f" Base URL: {agent.client.base_url}")
# Simple test task (minimal to save tokens)
print("\n📝 Running simple test task...")
task = "Calculate: What is 15 + 27? Provide FINAL ANSWER with the result."
result = agent.execute_task(task, max_iterations=3)
if result.get('success'):
print("✅ Task executed successfully!")
if result.get('final_answer'):
print(f" Answer: {result['final_answer'][:100]}...")
else:
print(f"⚠️ Task did not complete successfully")
if result.get('error'):
print(f" Error: {result['error']}")
print(f"\n📊 Execution stats:")
print(f" Iterations: {result.get('iterations', 0)}")
print(f" Tool calls: {len(result['trajectory'].tool_calls)}")
except Exception as e:
print(f"❌ Error: {str(e)}")
print("\nNote: Make sure your ARK_API_KEY is valid and has access to the doubao model.")
print("\n" + "="*60)
if __name__ == "__main__":
test_doubao()