syda run report

2026-06-09 01:59 UTC  ·  model: claude-haiku-4-5-20251001

600
total rows
24
LLM calls
18,012
input tokens
34,279
output tokens
$0.1894
est. cost
435.5s
total time

Summary

Table Rows Mode LLM calls In tokens Out tokens Cost Time Cache
products 600 codegen 24 18,012 34,279 $0.1894 435.5s HIT
TOTAL 600 24 18,012 34,279 $0.1894

Per-table details

products 600 rows  ·  codegen  ·  435.5s HIT b3a9eb7debd072b8

Column Strategy Calls In tok Out tok Cost Cache Function
product_id Code-gen 0 0 0 HIT
View generated function
def generate_product_id(row, col_name):
    return row.name + 1
category Code-gen 0 0 0 HIT
View generated function
def generate_category(row, col_name):
    import random
    return random.choice(['Electronics', 'Clothing', 'Home & Garden', 'Sports & Outdoors', 'Books', 'Toys & Games'])
brand Code-gen 0 0 0 HIT
View generated function
def generate_brand(row, col_name):
    import random
    import string
    brands = ['TechCorp', 'StyleMax', 'HomeElite', 'OutdoorPro', 'PageTurner', 'FunPlay', 'VisionTech', 'ComfortWear', 'GreenSpace', 'AdventureGear']
    return random.choice(brands)
price Code-gen 0 0 0 HIT
View generated function
def generate_price(row, col_name):
    import random
    return round(random.uniform(4.99, 999.99), 2)
stock_qty Code-gen 0 0 0 HIT
View generated function
def generate_stock_qty(row, col_name):
    import random
    return random.randint(0, 500)
product_name Code-gen 0 0 0 HIT
View generated function
def generate_product_name(row, col_name):
    import random
    adjectives = ['Premium', 'Deluxe', 'Professional', 'Advanced', 'Smart', 'Eco-Friendly', 'Ultra', 'Classic', 'Modern', 'Compact']
    nouns = ['Widget', 'Device', 'System', 'Tool', 'Pack', 'Set', 'Bundle', 'Collection', 'Gear', 'Essentials']
    words = [random.choice(adjectives), random.choice(nouns)]
    if random.random() > 0.5:
        descriptors = ['Pro', 'Max', 'Plus', 'Elite', 'Lite']
        words.append(random.choice(descriptors))
    name = ' '.join(words)
    return name[:80]
tagline Semantic LLM 12 9,012 5,461 $0.03632
description Semantic LLM 12 9,000 28,818 $0.15309