File size: 380 Bytes
7ace366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# test_local.py
import os
os.environ['OPENROUTER_API_KEY'] = 'your-api-key-here'

from app import create_ui_design

# Test single page
result = create_ui_design(
    "Create a landing page for a tech startup",
    os.environ['OPENROUTER_API_KEY']
)

# Test multi-page
result = create_ui_design(
    "Create 3 pages: landing, about, contact",
    os.environ['OPENROUTER_API_KEY']
)