diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e462822..e05dc61 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,5 +1,8 @@ -name: Publish to PyPI +name: Publish to PyPI (manual tag) +# Fallback for manual tag pushes. Primary publish path is in +# release-please.yml which chains a publish job after creating a +# GitHub Release (avoids GITHUB_TOKEN tag-trigger limitation). on: push: tags: diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index a1fe65c..79aba6b 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -12,6 +12,9 @@ jobs: release-please: name: Release Please runs-on: ubuntu-latest + outputs: + release_created: ${{ steps.release.outputs.release_created }} + tag_name: ${{ steps.release.outputs.tag_name }} steps: - uses: googleapis/release-please-action@v4 id: release @@ -19,3 +22,36 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} config-file: release-please-config.json manifest-file: .release-please-manifest.json + + publish: + name: Publish to PyPI + needs: release-please + if: ${{ needs.release-please.outputs.release_created == 'true' }} + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/project/dataforge-py/ + permissions: + id-token: write + contents: read + steps: + - uses: actions/checkout@v6 + with: + ref: ${{ needs.release-please.outputs.tag_name }} + + - uses: astral-sh/setup-uv@v7 + with: + python-version: "3.13" + + - name: Build package + run: uv build + + - name: Upload distribution artifacts + uses: actions/upload-artifact@v7 + with: + name: release-dist + path: dist/ + retention-days: 30 + + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.gitignore b/.gitignore index a1b6a99..9043473 100644 --- a/.gitignore +++ b/.gitignore @@ -29,7 +29,7 @@ coverage.xml .dmypy.json # Benchmark / profiling output -benchmark_*.json +*benchmark*.json *.prof *.pstats diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.2.0" } diff --git a/README.md b/README.md index 2e81c8c..953cbd6 100644 --- a/README.md +++ b/README.md @@ -884,20 +884,18 @@ DataForge uses GitHub Actions for continuous integration and delivery: | **CI** | Push/PR to main | Commitlint + Ruff lint/format + pytest matrix (Python 3.12, 3.13) | | **Integrations** | Push/PR to main | Tests with optional deps (PyArrow, Polars, Pydantic, SQLAlchemy) | | **Benchmarks** | Push to main | Runs `benchmark.py --compare`, uploads results as artifact | -| **Release** | Push to main | release-please creates/updates Release PR, auto-bumps version | -| **Publish** | `v*.*.*` tag | Builds with `uv build`, publishes to PyPI via OIDC trusted publishing | +| **Release** | Push to main | release-please creates/updates Release PR; on merge, publishes to PyPI | ### Release process 1. All commits to `main` use [Conventional Commits](https://www.conventionalcommits.org/) format 2. `release-please` automatically maintains a living Release PR that bundles changes -3. Merging the Release PR creates a version tag (`v0.2.0`, etc.) -4. The tag triggers the publish workflow, which pushes to PyPI with OIDC (no token needed) +3. Merging the Release PR creates a bare numeric version tag (`0.3.0`, etc.) and a GitHub Release +4. The publish job within the same workflow builds and pushes to PyPI via OIDC trusted publishing ### Setup requirements -- **`RELEASE_TOKEN`** — GitHub PAT with `contents: write` permission (for release-please to push tags that trigger downstream workflows) -- **`pypi` environment** — GitHub Environment with manual approval gate for PyPI publishing +- **`pypi` environment** — GitHub Environment configured for PyPI OIDC trusted publishing ## Contributing diff --git a/phase4_benchmark.json b/phase4_benchmark.json deleted file mode 100644 index 244caf8..0000000 --- a/phase4_benchmark.json +++ /dev/null @@ -1,777 +0,0 @@ -{ - "batch.address.city(count=N).100": 1862199.3613409672, - "batch.address.city(count=N).10000": 15508687.173315322, - "batch.address.city(count=N).100000": 21780323.485653162, - "batch.address.city(count=N).1000000": 18703475.10143408, - "batch.address.country(count=N).100": 4807682.607697948, - "batch.address.country(count=N).10000": 15666612.301831348, - "batch.address.country(count=N).100000": 22198543.976335295, - "batch.address.country(count=N).1000000": 19498460.617726285, - "batch.address.full_address(count=N).100": 269469.2072462986, - "batch.address.full_address(count=N).10000": 388179.1679853486, - "batch.address.full_address(count=N).100000": 387543.4241370867, - "batch.address.full_address(count=N).1000000": 382159.93354198296, - "batch.address.latitude(count=N).100": 1048217.7224581442, - "batch.address.latitude(count=N).10000": 1638968.1031673213, - "batch.address.latitude(count=N).100000": 1651762.2655040731, - "batch.address.latitude(count=N).1000000": 1612735.7093354429, - "batch.ai_chat.chat_content(count=N).100": 3300330.262991067, - "batch.ai_chat.chat_content(count=N).10000": 17812612.362876575, - "batch.ai_chat.chat_content(count=N).100000": 24116143.873910967, - "batch.ai_chat.chat_content(count=N).1000000": 19694149.844238263, - "batch.ai_chat.chat_model(count=N).100": 2617797.069507765, - "batch.ai_chat.chat_model(count=N).10000": 14084506.026869966, - "batch.ai_chat.chat_model(count=N).100000": 23646810.83439605, - "batch.ai_chat.chat_model(count=N).1000000": 20195777.88507771, - "batch.ai_chat.chat_role(count=N).100": 2824855.82667947, - "batch.ai_chat.chat_role(count=N).10000": 9237875.483244581, - "batch.ai_chat.chat_role(count=N).100000": 9351912.424584934, - "batch.ai_chat.chat_role(count=N).1000000": 9451331.309261592, - "batch.ai_chat.chat_tokens(count=N).100": 1186238.778565234, - "batch.ai_chat.chat_tokens(count=N).10000": 2298692.0107374084, - "batch.ai_chat.chat_tokens(count=N).100000": 2321106.518110431, - "batch.ai_chat.chat_tokens(count=N).1000000": 2241895.603844476, - "batch.ai_prompt.coding_prompt(count=N).100": 3968260.415954469, - "batch.ai_prompt.coding_prompt(count=N).10000": 18501390.182213157, - "batch.ai_prompt.coding_prompt(count=N).100000": 24689529.226014443, - "batch.ai_prompt.coding_prompt(count=N).1000000": 19949288.92087715, - "batch.ai_prompt.few_shot_prompt(count=N).100": 697349.8548868035, - "batch.ai_prompt.few_shot_prompt(count=N).10000": 839172.5722787087, - "batch.ai_prompt.few_shot_prompt(count=N).100000": 820234.86581552, - "batch.ai_prompt.few_shot_prompt(count=N).1000000": 804879.4366807383, - "batch.ai_prompt.persona_prompt(count=N).100": 1145475.8150742564, - "batch.ai_prompt.persona_prompt(count=N).10000": 2076239.5134301693, - "batch.ai_prompt.persona_prompt(count=N).100000": 2007193.7793324455, - "batch.ai_prompt.persona_prompt(count=N).1000000": 1969489.4572897747, - "batch.ai_prompt.prompt_template(count=N).100": 1540831.37221137, - "batch.ai_prompt.prompt_template(count=N).10000": 2010575.6598138127, - "batch.ai_prompt.prompt_template(count=N).100000": 2025336.9631106183, - "batch.ai_prompt.prompt_template(count=N).1000000": 1946270.0999289744, - "batch.ai_prompt.system_prompt(count=N).100": 2890170.851782566, - "batch.ai_prompt.system_prompt(count=N).10000": 18542554.065232296, - "batch.ai_prompt.system_prompt(count=N).100000": 25121209.5659136, - "batch.ai_prompt.system_prompt(count=N).1000000": 20444044.68059757, - "batch.ai_prompt.user_prompt(count=N).100": 7194250.077051926, - "batch.ai_prompt.user_prompt(count=N).10000": 16742005.469746439, - "batch.ai_prompt.user_prompt(count=N).100000": 24443303.3460946, - "batch.ai_prompt.user_prompt(count=N).1000000": 20612479.19611506, - "batch.barcode.ean13(count=N).100": 349528.1778009261, - "batch.barcode.ean13(count=N).10000": 588093.4589905787, - "batch.barcode.ean13(count=N).100000": 585530.4878039969, - "batch.barcode.ean13(count=N).1000000": 580267.2688036576, - "batch.barcode.isbn13(count=N).100": 405514.97924257343, - "batch.barcode.isbn13(count=N).10000": 512578.6806508584, - "batch.barcode.isbn13(count=N).100000": 531672.5300267149, - "batch.barcode.isbn13(count=N).1000000": 527599.2718958645, - "batch.color.hex_color(count=N).100": 1912048.3540454933, - "batch.color.hex_color(count=N).10000": 3907929.2998798084, - "batch.color.hex_color(count=N).100000": 3849781.524803498, - "batch.color.hex_color(count=N).1000000": 3759544.072810975, - "batch.dt.timezone(count=N).100": 4237276.772739156, - "batch.dt.timezone(count=N).10000": 18639332.65907186, - "batch.dt.timezone(count=N).100000": 23520003.701896057, - "batch.dt.timezone(count=N).1000000": 20108262.89716875, - "batch.dt.unix_timestamp(count=N).100": 1751314.4320417545, - "batch.dt.unix_timestamp(count=N).10000": 2708779.113369166, - "batch.dt.unix_timestamp(count=N).100000": 2753152.352839, - "batch.dt.unix_timestamp(count=N).1000000": 2610434.4282073835, - "batch.ecommerce.order_id(count=N).100": 946969.7939691124, - "batch.ecommerce.order_id(count=N).10000": 1658759.9329145257, - "batch.ecommerce.order_id(count=N).100000": 1670302.358335163, - "batch.ecommerce.order_id(count=N).1000000": 1626388.0816530185, - "batch.ecommerce.product_name(count=N).100": 814332.2227741732, - "batch.ecommerce.product_name(count=N).10000": 1399305.9344104314, - "batch.ecommerce.product_name(count=N).100000": 1366717.6912884023, - "batch.ecommerce.product_name(count=N).1000000": 1362635.6316207366, - "batch.ecommerce.sku(count=N).100": 470809.56249455333, - "batch.ecommerce.sku(count=N).10000": 529773.2549503063, - "batch.ecommerce.sku(count=N).100000": 553134.9754571499, - "batch.ecommerce.sku(count=N).1000000": 541010.459311471, - "batch.ecommerce.tracking_number(count=N).100": 773994.1911248591, - "batch.ecommerce.tracking_number(count=N).10000": 1200091.2065085173, - "batch.ecommerce.tracking_number(count=N).100000": 1313692.7510285773, - "batch.ecommerce.tracking_number(count=N).1000000": 1285451.796404139, - "batch.file.file_name(count=N).100": 900089.7573406599, - "batch.file.file_name(count=N).10000": 1935508.84802413, - "batch.file.file_name(count=N).100000": 1910515.2868664884, - "batch.file.file_name(count=N).1000000": 1867230.221877566, - "batch.finance.bic(count=N).100": 1107419.845785133, - "batch.finance.bic(count=N).10000": 1535815.2138834747, - "batch.finance.bic(count=N).100000": 1487882.6833088715, - "batch.finance.bic(count=N).1000000": 1520597.789389614, - "batch.finance.bitcoin_address(count=N).100": 278629.19206325675, - "batch.finance.bitcoin_address(count=N).10000": 345110.8147010275, - "batch.finance.bitcoin_address(count=N).100000": 349279.9418609636, - "batch.finance.bitcoin_address(count=N).1000000": 352249.03612608806, - "batch.finance.credit_card_number(count=N).100": 357653.7482314949, - "batch.finance.credit_card_number(count=N).10000": 486663.0004441471, - "batch.finance.credit_card_number(count=N).100000": 489353.14359321113, - "batch.finance.credit_card_number(count=N).1000000": 486561.96145408164, - "batch.finance.routing_number(count=N).100": 448229.5888049242, - "batch.finance.routing_number(count=N).10000": 649958.4059015402, - "batch.finance.routing_number(count=N).100000": 648360.84642337, - "batch.finance.routing_number(count=N).1000000": 640909.9896448377, - "batch.food.beverage(count=N).100": 2762436.5557717355, - "batch.food.beverage(count=N).10000": 15511089.9576033, - "batch.food.beverage(count=N).100000": 20064608.044006996, - "batch.food.beverage(count=N).1000000": 17490651.261234403, - "batch.food.cooking_method(count=N).100": 3472223.8538340274, - "batch.food.cooking_method(count=N).10000": 16966408.018160317, - "batch.food.cooking_method(count=N).100000": 21830724.775669806, - "batch.food.cooking_method(count=N).1000000": 18610190.955337163, - "batch.food.cuisine(count=N).100": 3194887.617205661, - "batch.food.cuisine(count=N).10000": 18231541.04388359, - "batch.food.cuisine(count=N).100000": 24701726.799006816, - "batch.food.cuisine(count=N).1000000": 19790184.460991006, - "batch.food.dietary_tag(count=N).100": 2217295.1869614823, - "batch.food.dietary_tag(count=N).10000": 15607926.255893445, - "batch.food.dietary_tag(count=N).100000": 20939777.01576019, - "batch.food.dietary_tag(count=N).1000000": 17585323.975262973, - "batch.food.dish(count=N).100": 2032519.2764270925, - "batch.food.dish(count=N).10000": 14936520.33460147, - "batch.food.dish(count=N).100000": 19342733.835448105, - "batch.food.dish(count=N).1000000": 17548600.841137607, - "batch.food.ingredient(count=N).100": 1845020.2528491712, - "batch.food.ingredient(count=N).10000": 16739202.970130136, - "batch.food.ingredient(count=N).100000": 23062198.988020856, - "batch.food.ingredient(count=N).1000000": 19472717.750745147, - "batch.food.restaurant(count=N).100": 1069518.5625760278, - "batch.food.restaurant(count=N).10000": 2121250.6712611807, - "batch.food.restaurant(count=N).100000": 2091822.6477109012, - "batch.food.restaurant(count=N).1000000": 2048321.9636935187, - "batch.geo.continent(count=N).100": 4629619.3292120965, - "batch.geo.continent(count=N).10000": 21048199.99029668, - "batch.geo.continent(count=N).100000": 21077036.39889589, - "batch.geo.continent(count=N).1000000": 18279731.06195227, - "batch.geo.geo_coordinate(count=N).100": 543773.7802820682, - "batch.geo.geo_coordinate(count=N).10000": 783656.0715133302, - "batch.geo.geo_coordinate(count=N).100000": 767681.8233858696, - "batch.geo.geo_coordinate(count=N).1000000": 759636.4441188218, - "batch.geo.geo_hash(count=N).100": 476644.49662850524, - "batch.geo.geo_hash(count=N).10000": 851368.146342557, - "batch.geo.geo_hash(count=N).100000": 845139.9380131869, - "batch.geo.geo_hash(count=N).1000000": 850078.5344651011, - "batch.geo.mountain_range(count=N).100": 3816781.789502215, - "batch.geo.mountain_range(count=N).10000": 16350555.907906268, - "batch.geo.mountain_range(count=N).100000": 20710365.626568433, - "batch.geo.mountain_range(count=N).1000000": 18339639.093693227, - "batch.geo.ocean(count=N).100": 4149366.0416002474, - "batch.geo.ocean(count=N).10000": 17799929.73636632, - "batch.geo.ocean(count=N).100000": 23930888.049701072, - "batch.geo.ocean(count=N).1000000": 20176381.939835973, - "batch.geo.river(count=N).100": 4016071.229469491, - "batch.geo.river(count=N).10000": 17488634.524252586, - "batch.geo.river(count=N).100000": 23940053.960567895, - "batch.geo.river(count=N).1000000": 19746026.630131043, - "batch.government.national_id(count=N).100": 1027748.7813486704, - "batch.government.national_id(count=N).10000": 1796557.7924834043, - "batch.government.national_id(count=N).100000": 1730115.7808943181, - "batch.government.national_id(count=N).1000000": 1742298.994813446, - "batch.government.passport_number(count=N).100": 840336.3123922669, - "batch.government.passport_number(count=N).10000": 1279148.5922140328, - "batch.government.passport_number(count=N).100000": 1276971.228333255, - "batch.government.passport_number(count=N).1000000": 1241925.4662309834, - "batch.government.ssn(count=N).100": 524658.8220922747, - "batch.government.ssn(count=N).10000": 636521.0326082945, - "batch.government.ssn(count=N).100000": 662731.3680813103, - "batch.government.ssn(count=N).1000000": 661885.3393144386, - "batch.government.tax_id(count=N).100": 654022.2363162508, - "batch.government.tax_id(count=N).10000": 1198480.3309951627, - "batch.government.tax_id(count=N).100000": 1180924.757406925, - "batch.government.tax_id(count=N).1000000": 1158534.4306905402, - "batch.hardware.cpu(count=N).100": 3184712.740430959, - "batch.hardware.cpu(count=N).10000": 16515277.88656667, - "batch.hardware.cpu(count=N).100000": 23916007.322752986, - "batch.hardware.cpu(count=N).1000000": 19942804.048227817, - "batch.hardware.form_factor(count=N).100": 3289473.830294025, - "batch.hardware.form_factor(count=N).10000": 15410696.561612397, - "batch.hardware.form_factor(count=N).100000": 21741493.726404984, - "batch.hardware.form_factor(count=N).1000000": 18383806.076292243, - "batch.hardware.gpu(count=N).100": 2688176.8114037146, - "batch.hardware.gpu(count=N).10000": 15223017.292345122, - "batch.hardware.gpu(count=N).100000": 23607176.537376862, - "batch.hardware.gpu(count=N).1000000": 20140013.341606073, - "batch.hardware.manufacturer(count=N).100": 2890180.5760890413, - "batch.hardware.manufacturer(count=N).10000": 15439245.552555753, - "batch.hardware.manufacturer(count=N).100000": 22163611.716780633, - "batch.hardware.manufacturer(count=N).1000000": 18577760.94323285, - "batch.hardware.peripheral(count=N).100": 2469131.196086153, - "batch.hardware.peripheral(count=N).10000": 15491866.152864223, - "batch.hardware.peripheral(count=N).100000": 22199529.578307293, - "batch.hardware.peripheral(count=N).1000000": 18757502.999918595, - "batch.hardware.ram_size(count=N).100": 3333333.821760355, - "batch.hardware.ram_size(count=N).10000": 16315875.072249107, - "batch.hardware.ram_size(count=N).100000": 24307834.358646914, - "batch.hardware.ram_size(count=N).1000000": 20327103.71643362, - "batch.hardware.ram_type(count=N).100": 4237276.772739156, - "batch.hardware.ram_type(count=N).10000": 14263300.865119787, - "batch.hardware.ram_type(count=N).100000": 21607606.03585778, - "batch.hardware.ram_type(count=N).1000000": 18599875.769639324, - "batch.hardware.storage(count=N).100": 3039512.043848568, - "batch.hardware.storage(count=N).10000": 16439254.46743491, - "batch.hardware.storage(count=N).100000": 23543260.21217929, - "batch.hardware.storage(count=N).1000000": 19948413.40955286, - "batch.internet.email(count=N).100": 490918.20646039565, - "batch.internet.email(count=N).10000": 1101843.3893042824, - "batch.internet.email(count=N).100000": 1090239.0902376696, - "batch.internet.email(count=N).1000000": 1033175.1508041961, - "batch.internet.ipv4(count=N).100": 1508294.7346241437, - "batch.internet.ipv4(count=N).10000": 2423713.623103906, - "batch.internet.ipv4(count=N).100000": 2475762.2876807996, - "batch.internet.ipv4(count=N).1000000": 2420688.5604212563, - "batch.internet.safe_email(count=N).100": 773993.4937197022, - "batch.internet.safe_email(count=N).10000": 1032695.1231280711, - "batch.internet.safe_email(count=N).100000": 1100886.3230224485, - "batch.internet.safe_email(count=N).1000000": 1041591.9107236699, - "batch.internet.slug(count=N).100": 686341.5075977545, - "batch.internet.slug(count=N).10000": 1008939.1979480722, - "batch.internet.slug(count=N).100000": 1083828.7335178077, - "batch.internet.slug(count=N).1000000": 1057952.187660851, - "batch.legal.case_number(count=N).100": 596302.9347491065, - "batch.legal.case_number(count=N).10000": 833222.2370297859, - "batch.legal.case_number(count=N).100000": 828406.3858378624, - "batch.legal.case_number(count=N).1000000": 827676.4407489263, - "batch.legal.court(count=N).100": 2610969.984862946, - "batch.legal.court(count=N).10000": 17838028.207972642, - "batch.legal.court(count=N).100000": 24751249.751693226, - "batch.legal.court(count=N).1000000": 20233044.215926185, - "batch.legal.judge(count=N).100": 1150746.9318093522, - "batch.legal.judge(count=N).10000": 2089951.5149453718, - "batch.legal.judge(count=N).100000": 2074383.2333537398, - "batch.legal.judge(count=N).1000000": 2033889.0663639642, - "batch.legal.law_firm(count=N).100": 1146787.913644477, - "batch.legal.law_firm(count=N).10000": 2128021.7716864967, - "batch.legal.law_firm(count=N).100000": 2105879.404860612, - "batch.legal.law_firm(count=N).1000000": 2033431.6496026756, - "batch.legal.legal_term(count=N).100": 3012046.3809583923, - "batch.legal.legal_term(count=N).10000": 16318537.604731994, - "batch.legal.legal_term(count=N).100000": 20511979.055939842, - "batch.legal.legal_term(count=N).1000000": 17541213.08663284, - "batch.legal.practice_area(count=N).100": 3745306.163451812, - "batch.legal.practice_area(count=N).10000": 18188432.30612021, - "batch.legal.practice_area(count=N).100000": 24097547.254976716, - "batch.legal.practice_area(count=N).1000000": 19981577.01319556, - "batch.legal.verdict(count=N).100": 1564944.71494652, - "batch.legal.verdict(count=N).10000": 16675003.43985228, - "batch.legal.verdict(count=N).100000": 22013340.01136194, - "batch.legal.verdict(count=N).1000000": 18838777.740618486, - "batch.llm.agent_name(count=N).100": 2369669.813928468, - "batch.llm.agent_name(count=N).10000": 16241675.306585226, - "batch.llm.agent_name(count=N).100000": 24317292.04197395, - "batch.llm.agent_name(count=N).1000000": 20260181.228394426, - "batch.llm.api_key(count=N).100": 71469.40800664813, - "batch.llm.api_key(count=N).10000": 73824.22010470879, - "batch.llm.api_key(count=N).100000": 73345.66469087129, - "batch.llm.api_key(count=N).1000000": 72638.50952519011, - "batch.llm.chunk_id(count=N).100": 1628664.4455483465, - "batch.llm.chunk_id(count=N).10000": 3498338.2937623053, - "batch.llm.chunk_id(count=N).100000": 3653368.40026626, - "batch.llm.chunk_id(count=N).1000000": 3444378.9632766135, - "batch.llm.cost_estimate(count=N).100": 895254.8621359547, - "batch.llm.cost_estimate(count=N).10000": 1586948.9272346785, - "batch.llm.cost_estimate(count=N).100000": 1594860.7203004712, - "batch.llm.cost_estimate(count=N).1000000": 1561047.7377583156, - "batch.llm.finish_reason(count=N).100": 2610969.984862946, - "batch.llm.finish_reason(count=N).10000": 17711654.52649624, - "batch.llm.finish_reason(count=N).100000": 23839038.562866356, - "batch.llm.finish_reason(count=N).1000000": 20073065.936840884, - "batch.llm.harm_label(count=N).100": 3558721.250160537, - "batch.llm.harm_label(count=N).10000": 17866715.764803175, - "batch.llm.harm_label(count=N).100000": 24177364.78733932, - "batch.llm.harm_label(count=N).1000000": 20214107.8415569, - "batch.llm.model_name(count=N).100": 4255307.827051876, - "batch.llm.model_name(count=N).10000": 19489375.808849286, - "batch.llm.model_name(count=N).100000": 24067967.426461853, - "batch.llm.model_name(count=N).1000000": 19712085.274790592, - "batch.llm.moderation_category(count=N).100": 3676474.064182567, - "batch.llm.moderation_category(count=N).10000": 11334013.808602015, - "batch.llm.moderation_category(count=N).100000": 20879441.966777712, - "batch.llm.moderation_category(count=N).1000000": 17746984.765878476, - "batch.llm.provider_name(count=N).100": 2583982.9714526366, - "batch.llm.provider_name(count=N).10000": 15984654.971665634, - "batch.llm.provider_name(count=N).100000": 20591384.245131485, - "batch.llm.provider_name(count=N).1000000": 17594884.79908279, - "batch.llm.rate_limit_header(count=N).100": 931966.4307258327, - "batch.llm.rate_limit_header(count=N).10000": 1551325.618195776, - "batch.llm.rate_limit_header(count=N).100000": 1509602.5799125282, - "batch.llm.rate_limit_header(count=N).1000000": 1492333.0644321516, - "batch.llm.similarity_score(count=N).100": 984252.3683538111, - "batch.llm.similarity_score(count=N).10000": 1657879.918283461, - "batch.llm.similarity_score(count=N).100000": 1658039.3356440195, - "batch.llm.similarity_score(count=N).1000000": 1624677.1563174273, - "batch.llm.token_count(count=N).100": 1291989.5424757956, - "batch.llm.token_count(count=N).10000": 2288277.1049552527, - "batch.llm.token_count(count=N).100000": 2317266.1843216545, - "batch.llm.token_count(count=N).1000000": 2273071.332971418, - "batch.llm.tool_call_id(count=N).100": 118891.92699675598, - "batch.llm.tool_call_id(count=N).10000": 121833.24915617635, - "batch.llm.tool_call_id(count=N).100000": 122553.75054538046, - "batch.llm.tool_call_id(count=N).1000000": 121991.94697080164, - "batch.llm.tool_name(count=N).100": 3289473.830294025, - "batch.llm.tool_name(count=N).10000": 18231541.04388359, - "batch.llm.tool_name(count=N).100000": 23980814.844700847, - "batch.llm.tool_name(count=N).1000000": 20306465.170311492, - "batch.logistics.carrier(count=N).100": 2688176.8114037146, - "batch.logistics.carrier(count=N).10000": 14392632.310180847, - "batch.logistics.carrier(count=N).100000": 19627470.496990986, - "batch.logistics.carrier(count=N).1000000": 17298823.33172296, - "batch.logistics.container_type(count=N).100": 3367004.1243174807, - "batch.logistics.container_type(count=N).10000": 16603020.481595634, - "batch.logistics.container_type(count=N).100000": 24043663.266687654, - "batch.logistics.container_type(count=N).1000000": 20196389.7124375, - "batch.logistics.freight_class(count=N).100": 1636661.2222656212, - "batch.logistics.freight_class(count=N).10000": 4397924.2417733995, - "batch.logistics.freight_class(count=N).100000": 4527324.674274956, - "batch.logistics.freight_class(count=N).1000000": 4353550.058726239, - "batch.logistics.hs_code(count=N).100": 715819.5314387999, - "batch.logistics.hs_code(count=N).10000": 999410.342477263, - "batch.logistics.hs_code(count=N).100000": 985861.7558686206, - "batch.logistics.hs_code(count=N).1000000": 980344.2930595151, - "batch.logistics.package_type(count=N).100": 4184088.9391134926, - "batch.logistics.package_type(count=N).10000": 17467250.875758503, - "batch.logistics.package_type(count=N).100000": 20515766.45552542, - "batch.logistics.package_type(count=N).1000000": 18449776.05173427, - "batch.logistics.shipping_method(count=N).100": 3012056.9426863263, - "batch.logistics.shipping_method(count=N).10000": 14947683.73871041, - "batch.logistics.shipping_method(count=N).100000": 19620924.04063458, - "batch.logistics.shipping_method(count=N).1000000": 17329070.400661245, - "batch.logistics.tracking_status(count=N).100": 2702699.130347232, - "batch.logistics.tracking_status(count=N).10000": 13947001.626729608, - "batch.logistics.tracking_status(count=N).100000": 21511390.2476631, - "batch.logistics.tracking_status(count=N).1000000": 18413256.062491216, - "batch.logistics.warehouse(count=N).100": 1200479.4396415583, - "batch.logistics.warehouse(count=N).10000": 2066329.189000752, - "batch.logistics.warehouse(count=N).100000": 2067683.55668967, - "batch.logistics.warehouse(count=N).1000000": 2024625.5205738393, - "batch.medical.blood_type(count=N).100": 2597398.5274240808, - "batch.medical.blood_type(count=N).10000": 13435443.363622487, - "batch.medical.blood_type(count=N).100000": 22921585.039407816, - "batch.medical.blood_type(count=N).1000000": 20663163.54980958, - "batch.medical.diagnosis(count=N).100": 2631583.095243201, - "batch.medical.diagnosis(count=N).10000": 16041065.799683098, - "batch.medical.diagnosis(count=N).100000": 19504583.866421055, - "batch.medical.diagnosis(count=N).1000000": 17614875.437971886, - "batch.medical.drug_name(count=N).100": 2252252.818483821, - "batch.medical.drug_name(count=N).10000": 16675006.676847752, - "batch.medical.drug_name(count=N).100000": 23930314.704978343, - "batch.medical.drug_name(count=N).1000000": 20306465.170311492, - "batch.medical.icd10_code(count=N).100": 598443.6578771182, - "batch.medical.icd10_code(count=N).10000": 856289.0159123734, - "batch.medical.icd10_code(count=N).100000": 929836.4052314934, - "batch.medical.icd10_code(count=N).1000000": 905589.4884980584, - "batch.medical.medical_record_number(count=N).100": 1089324.6125829997, - "batch.medical.medical_record_number(count=N).10000": 1943068.0771864902, - "batch.medical.medical_record_number(count=N).100000": 1894940.6990117095, - "batch.medical.medical_record_number(count=N).1000000": 1898030.5844922967, - "batch.misc.uuid4(count=N).100": 1050419.8766878382, - "batch.misc.uuid4(count=N).10000": 1683615.0418409943, - "batch.misc.uuid4(count=N).100000": 1702304.408396171, - "batch.misc.uuid4(count=N).1000000": 1649930.8679368554, - "batch.misc.uuid7(count=N).100": 677048.2514445514, - "batch.misc.uuid7(count=N).10000": 1131874.7110831565, - "batch.misc.uuid7(count=N).100000": 1134067.1510433292, - "batch.misc.uuid7(count=N).1000000": 1116715.5341725359, - "batch.music.album(count=N).100": 1086956.4976198128, - "batch.music.album(count=N).10000": 2147766.347745522, - "batch.music.album(count=N).100000": 2132873.7719289833, - "batch.music.album(count=N).1000000": 2082210.2412984972, - "batch.music.artist(count=N).100": 2976188.437471849, - "batch.music.artist(count=N).10000": 17844394.43267273, - "batch.music.artist(count=N).100000": 23481895.1077901, - "batch.music.artist(count=N).1000000": 20027638.1459177, - "batch.music.duration(count=N).100": 761614.2258917117, - "batch.music.duration(count=N).10000": 1096839.9993089472, - "batch.music.duration(count=N).100000": 1094328.9684252616, - "batch.music.duration(count=N).1000000": 1080005.162469015, - "batch.music.genre(count=N).100": 2242152.9509724337, - "batch.music.genre(count=N).10000": 16358580.12537357, - "batch.music.genre(count=N).100000": 22499718.337527942, - "batch.music.genre(count=N).1000000": 18570826.342709776, - "batch.music.instrument(count=N).100": 2469138.293493383, - "batch.music.instrument(count=N).10000": 16463613.110195693, - "batch.music.instrument(count=N).100000": 23685457.029676586, - "batch.music.instrument(count=N).1000000": 20011166.250564028, - "batch.music.record_label(count=N).100": 2958577.733691534, - "batch.music.record_label(count=N).10000": 17702248.371648654, - "batch.music.record_label(count=N).100000": 23011782.502762843, - "batch.music.record_label(count=N).1000000": 19685775.66703914, - "batch.music.song(count=N).100": 1201924.015436236, - "batch.music.song(count=N).10000": 2308296.055546141, - "batch.music.song(count=N).100000": 2297139.6056550904, - "batch.music.song(count=N).1000000": 2242712.641864231, - "batch.network.hostname(count=N).100": 813669.6203382959, - "batch.network.hostname(count=N).10000": 1199846.4173716959, - "batch.network.hostname(count=N).100000": 1147622.069020056, - "batch.network.hostname(count=N).1000000": 1182756.3118136253, - "batch.network.ipv6(count=N).100": 1179246.017028497, - "batch.network.ipv6(count=N).10000": 1447722.7370412913, - "batch.network.ipv6(count=N).100000": 1460815.80844255, - "batch.network.ipv6(count=N).1000000": 1445774.0747130353, - "batch.network.mac_address(count=N).100": 1078748.5657809307, - "batch.network.mac_address(count=N).10000": 1622244.2066838709, - "batch.network.mac_address(count=N).100000": 1780262.232385301, - "batch.network.mac_address(count=N).1000000": 1757211.375614448, - "batch.network.user_agent(count=N).100": 2398076.6642192514, - "batch.network.user_agent(count=N).10000": 18125792.67606894, - "batch.network.user_agent(count=N).100000": 24448084.11798809, - "batch.network.user_agent(count=N).1000000": 20071051.53070026, - "batch.payment.card_type(count=N).100": 2427179.7008245126, - "batch.payment.card_type(count=N).10000": 16281341.046843234, - "batch.payment.card_type(count=N).100000": 22524552.12445248, - "batch.payment.card_type(count=N).1000000": 19281568.737392277, - "batch.payment.currency_code(count=N).100": 2053387.180455621, - "batch.payment.currency_code(count=N).10000": 16719611.712770844, - "batch.payment.currency_code(count=N).100000": 24063334.82093871, - "batch.payment.currency_code(count=N).1000000": 20442080.44725271, - "batch.payment.cvv(count=N).100": 815660.6704231022, - "batch.payment.cvv(count=N).10000": 1300813.011597071, - "batch.payment.cvv(count=N).100000": 1291887.8486744624, - "batch.payment.cvv(count=N).1000000": 1289148.208333235, - "batch.payment.expiry_date(count=N).100": 776397.2176025683, - "batch.payment.expiry_date(count=N).10000": 1018578.8769417149, - "batch.payment.expiry_date(count=N).100000": 1033757.3458766658, - "batch.payment.expiry_date(count=N).1000000": 1010423.0186151443, - "batch.payment.payment_amount(count=N).100": 757576.0022083641, - "batch.payment.payment_amount(count=N).10000": 1122410.0425600484, - "batch.payment.payment_amount(count=N).100000": 1133502.8306407144, - "batch.payment.payment_amount(count=N).1000000": 1108026.365696645, - "batch.payment.transaction_id(count=N).100": 1028806.1436602782, - "batch.payment.transaction_id(count=N).10000": 1797429.6794225231, - "batch.payment.transaction_id(count=N).100000": 1776195.7813246567, - "batch.payment.transaction_id(count=N).1000000": 1789463.8516781307, - "batch.person.first_name(count=N).100": 5376336.797831924, - "batch.person.first_name(count=N).10000": 20173490.02860712, - "batch.person.first_name(count=N).100000": 22032740.727608204, - "batch.person.first_name(count=N).1000000": 19072977.009678103, - "batch.person.full_name(count=N).100": 1485883.0678962052, - "batch.person.full_name(count=N).10000": 5673758.759716138, - "batch.person.full_name(count=N).100000": 6375518.014411957, - "batch.person.full_name(count=N).1000000": 5293823.062902517, - "batch.real_estate.amenity(count=N).100": 2777774.591738402, - "batch.real_estate.amenity(count=N).10000": 15556938.269816231, - "batch.real_estate.amenity(count=N).100000": 20102119.055624742, - "batch.real_estate.amenity(count=N).1000000": 17167057.786449242, - "batch.real_estate.listing_price(count=N).100": 792393.571877286, - "batch.real_estate.listing_price(count=N).10000": 1379177.177272933, - "batch.real_estate.listing_price(count=N).100000": 1354949.2902975532, - "batch.real_estate.listing_price(count=N).1000000": 1341048.4746575723, - "batch.real_estate.listing_status(count=N).100": 3194887.617205661, - "batch.real_estate.listing_status(count=N).10000": 16077168.360490667, - "batch.real_estate.listing_status(count=N).100000": 19942565.420006163, - "batch.real_estate.listing_status(count=N).1000000": 17331653.321753576, - "batch.real_estate.neighborhood(count=N).100": 2212389.628732953, - "batch.real_estate.neighborhood(count=N).10000": 14172335.245760724, - "batch.real_estate.neighborhood(count=N).100000": 19750355.427481536, - "batch.real_estate.neighborhood(count=N).1000000": 17450301.53253656, - "batch.real_estate.property_type(count=N).100": 2985072.643807578, - "batch.real_estate.property_type(count=N).10000": 17301035.254299965, - "batch.real_estate.property_type(count=N).100000": 22403441.194770273, - "batch.real_estate.property_type(count=N).1000000": 18860131.377338238, - "batch.real_estate.square_footage(count=N).100": 1005025.7040498515, - "batch.real_estate.square_footage(count=N).10000": 1624642.5909445062, - "batch.real_estate.square_footage(count=N).100000": 1596638.1199413615, - "batch.real_estate.square_footage(count=N).1000000": 1587029.0213305538, - "batch.science.chemical_element(count=N).100": 3875974.457178955, - "batch.science.chemical_element(count=N).10000": 19346102.59097861, - "batch.science.chemical_element(count=N).100000": 16770082.164266841, - "batch.science.chemical_element(count=N).1000000": 20517702.67968588, - "batch.science.constellation(count=N).100": 3012056.9426863263, - "batch.science.constellation(count=N).10000": 17485572.95305281, - "batch.science.constellation(count=N).100000": 22214817.03372729, - "batch.science.constellation(count=N).1000000": 18938425.467159837, - "batch.science.element_symbol(count=N).100": 2688168.398915962, - "batch.science.element_symbol(count=N).10000": 18221574.746359687, - "batch.science.element_symbol(count=N).100000": 24428376.17232926, - "batch.science.element_symbol(count=N).1000000": 20585534.987043858, - "batch.science.planet(count=N).100": 4255307.827051876, - "batch.science.planet(count=N).10000": 17934001.10402468, - "batch.science.planet(count=N).100000": 24405720.699032895, - "batch.science.planet(count=N).1000000": 20408038.317569226, - "batch.science.si_unit(count=N).100": 2702699.130347232, - "batch.science.si_unit(count=N).10000": 18122507.802864432, - "batch.science.si_unit(count=N).100000": 23910860.612706132, - "batch.science.si_unit(count=N).1000000": 19959044.036485344, - "batch.social_media.follower_count(count=N).100": 971816.4952115895, - "batch.social_media.follower_count(count=N).10000": 1376765.7001489499, - "batch.social_media.follower_count(count=N).100000": 1528030.9625474927, - "batch.social_media.follower_count(count=N).1000000": 1497322.7120458027, - "batch.social_media.hashtag(count=N).100": 1468430.151083638, - "batch.social_media.hashtag(count=N).10000": 3750093.684078177, - "batch.social_media.hashtag(count=N).100000": 3753049.3559414614, - "batch.social_media.hashtag(count=N).1000000": 3588976.099963808, - "batch.social_media.platform(count=N).100": 2439026.594394455, - "batch.social_media.platform(count=N).10000": 15669067.132522464, - "batch.social_media.platform(count=N).100000": 24039617.23264678, - "batch.social_media.platform(count=N).1000000": 20202061.029019028, - "batch.social_media.post_type(count=N).100": 4329014.998966875, - "batch.social_media.post_type(count=N).10000": 19364834.437295105, - "batch.social_media.post_type(count=N).100000": 24063334.82093871, - "batch.social_media.post_type(count=N).1000000": 20245701.851317607, - "batch.social_media.reaction(count=N).100": 3355705.3644816, - "batch.social_media.reaction(count=N).10000": 17844394.43267273, - "batch.social_media.reaction(count=N).100000": 24748799.478168022, - "batch.social_media.reaction(count=N).1000000": 20450441.45363759, - "batch.social_media.username(count=N).100": 769823.2880935482, - "batch.social_media.username(count=N).10000": 1232589.65931192, - "batch.social_media.username(count=N).100000": 1207098.2193326221, - "batch.social_media.username(count=N).1000000": 1196233.2051346116, - "batch.sports.athlete(count=N).100": 1108647.5934807411, - "batch.sports.athlete(count=N).10000": 2150398.890015221, - "batch.sports.athlete(count=N).100000": 2112588.279225236, - "batch.sports.athlete(count=N).1000000": 2045302.2166186557, - "batch.sports.league(count=N).100": 3378379.2277257317, - "batch.sports.league(count=N).10000": 16548073.66048681, - "batch.sports.league(count=N).100000": 19072322.26830477, - "batch.sports.league(count=N).1000000": 17376405.961958654, - "batch.sports.position(count=N).100": 3184712.740430959, - "batch.sports.position(count=N).10000": 16033349.980270803, - "batch.sports.position(count=N).100000": 20822488.22581135, - "batch.sports.position(count=N).1000000": 17710462.27175924, - "batch.sports.score(count=N).100": 907440.816977618, - "batch.sports.score(count=N).10000": 1293343.1680358418, - "batch.sports.score(count=N).100000": 1297536.8858558594, - "batch.sports.score(count=N).1000000": 1285621.6843069461, - "batch.sports.sport(count=N).100": 2087681.9971904787, - "batch.sports.sport(count=N).10000": 16897601.509819075, - "batch.sports.sport(count=N).100000": 22383383.033594795, - "batch.sports.sport(count=N).1000000": 19714028.31262177, - "batch.sports.team(count=N).100": 3436427.4452227694, - "batch.sports.team(count=N).10000": 18171906.2559432, - "batch.sports.team(count=N).100000": 25026278.06009033, - "batch.sports.team(count=N).1000000": 20608443.69922721, - "batch.sports.venue(count=N).100": 2976188.437471849, - "batch.sports.venue(count=N).10000": 17790425.927578952, - "batch.sports.venue(count=N).100000": 23106962.086539593, - "batch.sports.venue(count=N).1000000": 19057456.318840496, - "batch.text.buzzword(count=N).100": 4504517.447665394, - "batch.text.buzzword(count=N).10000": 13397642.390026588, - "batch.text.buzzword(count=N).100000": 20660729.86135342, - "batch.text.buzzword(count=N).1000000": 17732540.112859413, - "batch.text.headline(count=N).100": 2364067.7113778847, - "batch.text.headline(count=N).10000": 5845559.9415357895, - "batch.text.headline(count=N).100000": 5625214.46997444, - "batch.text.headline(count=N).1000000": 4736431.7818699675, - "batch.text.paragraph(count=N).100": 115620.29403312634, - "batch.text.paragraph(count=N).10000": 120712.29904934505, - "batch.text.paragraph(count=N).100000": 119463.65122323621, - "batch.text.paragraph(count=N).1000000": 118694.97768107298, - "batch.text.quote(count=N).100": 965251.2079216377, - "batch.text.quote(count=N).10000": 4008015.995978329, - "batch.text.quote(count=N).100000": 3699620.419500182, - "batch.text.quote(count=N).1000000": 3130326.4461557795, - "batch.weather.alert(count=N).100": 3412970.416194847, - "batch.weather.alert(count=N).10000": 16479895.510143941, - "batch.weather.alert(count=N).100000": 24458249.470178746, - "batch.weather.alert(count=N).1000000": 20107009.50482196, - "batch.weather.condition(count=N).100": 2659578.9201222365, - "batch.weather.condition(count=N).10000": 15923566.653980857, - "batch.weather.condition(count=N).100000": 20113035.163004395, - "batch.weather.condition(count=N).1000000": 17158191.661919862, - "batch.weather.humidity(count=N).100": 1506023.1904791961, - "batch.weather.humidity(count=N).10000": 2495694.9202110963, - "batch.weather.humidity(count=N).100000": 2531530.203275849, - "batch.weather.humidity(count=N).1000000": 2474500.886410848, - "batch.weather.temperature(count=N).100": 1048217.7224581442, - "batch.weather.temperature(count=N).10000": 2355268.7549367794, - "batch.weather.temperature(count=N).100000": 2331578.430005785, - "batch.weather.temperature(count=N).1000000": 2260762.188940635, - "batch.weather.wind_direction(count=N).100": 2192982.55352935, - "batch.weather.wind_direction(count=N).10000": 15743074.354428235, - "batch.weather.wind_direction(count=N).100000": 22588660.75307329, - "batch.weather.wind_direction(count=N).1000000": 20237220.697988752, - "batch.weather.wind_speed(count=N).100": 906618.1084361511, - "batch.weather.wind_speed(count=N).10000": 2399692.868262423, - "batch.weather.wind_speed(count=N).100000": 2405436.2915697177, - "batch.weather.wind_speed(count=N).1000000": 2344665.3356738174, - "scalar.address.city()": 4129671.8131070337, - "scalar.address.coordinate()": 746135.0230290379, - "scalar.address.country()": 4159906.972342897, - "scalar.address.country_code()": 4185851.7678706776, - "scalar.address.full_address()": 328492.4494039763, - "scalar.address.latitude()": 1296193.088428535, - "scalar.address.longitude()": 1451041.8537881593, - "scalar.ai_chat.chat_content()": 2790645.720702253, - "scalar.ai_chat.chat_model()": 2768932.556767015, - "scalar.ai_chat.chat_role()": 1307172.4477480466, - "scalar.ai_chat.chat_tokens()": 1661515.9458098735, - "scalar.ai_prompt.coding_prompt()": 4408004.849971207, - "scalar.ai_prompt.creative_prompt()": 4120652.76433865, - "scalar.ai_prompt.few_shot_prompt()": 822429.2892603877, - "scalar.ai_prompt.persona_prompt()": 1946699.3714651358, - "scalar.ai_prompt.prompt_template()": 1126379.8198195552, - "scalar.ai_prompt.system_prompt()": 4094165.8607358164, - "scalar.ai_prompt.user_prompt()": 4403346.421128596, - "scalar.barcode.ean13()": 531728.222734589, - "scalar.barcode.ean8()": 635857.2596620393, - "scalar.barcode.isbn10()": 689678.9523242506, - "scalar.barcode.isbn13()": 490657.8738887593, - "scalar.color.hex_color()": 3565570.78228679, - "scalar.color.rgb()": 5318300.275625023, - "scalar.company.company_name()": 2007387.1455997026, - "scalar.dt.date()": 811886.0140406878, - "scalar.dt.timezone()": 4290740.701871621, - "scalar.dt.unix_timestamp()": 2404481.952657993, - "scalar.ecommerce.order_id()": 1572673.2327403107, - "scalar.ecommerce.price_with_currency()": 1118430.6207855416, - "scalar.ecommerce.product_category()": 3897115.986086963, - "scalar.ecommerce.product_name()": 1354077.8043582595, - "scalar.ecommerce.review_rating()": 3025535.4999103253, - "scalar.ecommerce.sku()": 503258.59739788366, - "scalar.ecommerce.tracking_number()": 1231223.849838968, - "scalar.file.file_name()": 1559867.742546572, - "scalar.file.file_path()": 568330.3595226345, - "scalar.finance.bic()": 1383834.058248806, - "scalar.finance.bitcoin_address()": 350141.28336896293, - "scalar.finance.credit_card_number()": 479377.1946567106, - "scalar.finance.iban()": 662962.9158951817, - "scalar.finance.price()": 1318113.511398577, - "scalar.finance.routing_number()": 594788.4647799422, - "scalar.food.beverage()": 4015257.9993523187, - "scalar.food.cooking_method()": 4015580.4736401546, - "scalar.food.cuisine()": 4403540.551483317, - "scalar.food.dietary_tag()": 3967939.0815550727, - "scalar.food.dish()": 3916500.2142920974, - "scalar.food.ingredient()": 4048419.1754763657, - "scalar.food.restaurant()": 2041691.319544214, - "scalar.geo.compass_direction()": 3907471.0150099434, - "scalar.geo.continent()": 4308858.841461931, - "scalar.geo.geo_coordinate()": 745867.8922796363, - "scalar.geo.geo_hash()": 842467.0774060035, - "scalar.geo.mountain_range()": 4063884.270292089, - "scalar.geo.ocean()": 4037630.719054862, - "scalar.geo.river()": 4317230.172693035, - "scalar.government.drivers_license()": 1197490.0573413908, - "scalar.government.national_id()": 1488383.183373687, - "scalar.government.passport_number()": 1207860.7659748853, - "scalar.government.ssn()": 624617.4210615545, - "scalar.government.tax_id()": 1133285.733035111, - "scalar.hardware.cpu()": 3574236.900644487, - "scalar.hardware.form_factor()": 4000960.1408646787, - "scalar.hardware.gpu()": 4349149.6547715925, - "scalar.hardware.manufacturer()": 4366049.418464728, - "scalar.hardware.peripheral()": 3001020.351894151, - "scalar.hardware.ram_size()": 4062398.438438092, - "scalar.hardware.ram_type()": 4025764.805999307, - "scalar.hardware.storage()": 4035675.356151062, - "scalar.internet.email()": 614851.1146730755, - "scalar.internet.ipv4()": 2234836.594216303, - "scalar.internet.safe_email()": 630982.5046831893, - "scalar.internet.slug()": 968917.1375190504, - "scalar.internet.tld()": 4038446.0129468204, - "scalar.legal.case_number()": 822530.7610414177, - "scalar.legal.court()": 4097185.3038424687, - "scalar.legal.judge()": 1964713.7450887787, - "scalar.legal.law_firm()": 2061855.6587795406, - "scalar.legal.legal_term()": 4305148.973321906, - "scalar.legal.practice_area()": 4359197.897419528, - "scalar.legal.verdict()": 4048746.998472258, - "scalar.llm.agent_name()": 4098696.6961390176, - "scalar.llm.api_key()": 73008.84794761012, - "scalar.llm.chunk_id()": 3247174.9049456967, - "scalar.llm.cost_estimate()": 1422333.4835101531, - "scalar.llm.embedding_model()": 4081132.870297807, - "scalar.llm.finish_reason()": 3851190.0456156535, - "scalar.llm.harm_label()": 4079967.493003325, - "scalar.llm.model_name()": 4407227.986921464, - "scalar.llm.moderation_category()": 4174493.906553218, - "scalar.llm.provider_name()": 4013324.240756436, - "scalar.llm.rate_limit_header()": 1454058.9852744176, - "scalar.llm.similarity_score()": 1543424.246984258, - "scalar.llm.token_count()": 2207261.8728530905, - "scalar.llm.tool_call_id()": 120764.63332618051, - "scalar.llm.tool_name()": 4078802.58739554, - "scalar.llm.vector_db_name()": 3994088.6071358495, - "scalar.logistics.carrier()": 4272591.308060556, - "scalar.logistics.container_type()": 4036815.7542845323, - "scalar.logistics.freight_class()": 3932208.660602169, - "scalar.logistics.hs_code()": 926277.5669554701, - "scalar.logistics.package_type()": 4059430.031835342, - "scalar.logistics.shipping_method()": 4022364.4190640734, - "scalar.logistics.tracking_status()": 3854307.239983156, - "scalar.logistics.warehouse()": 2023677.010962476, - "scalar.lorem.sentence()": 881725.3618293812, - "scalar.medical.blood_type()": 3684870.0024588867, - "scalar.medical.diagnosis()": 3921876.2654596264, - "scalar.medical.dosage()": 1479793.4206436474, - "scalar.medical.drug_name()": 4163197.3133553914, - "scalar.medical.icd10_code()": 885998.5624847509, - "scalar.medical.medical_record_number()": 1875328.1913727827, - "scalar.medical.procedure()": 4177982.125298784, - "scalar.misc.boolean()": 10096930.794122014, - "scalar.misc.uuid4()": 1385598.0921636862, - "scalar.misc.uuid7()": 946109.6042509039, - "scalar.music.album()": 2057655.5134101594, - "scalar.music.artist()": 3986128.2571359086, - "scalar.music.duration()": 1051967.1816070944, - "scalar.music.genre()": 4344426.198839377, - "scalar.music.instrument()": 4420084.870392245, - "scalar.music.record_label()": 4071992.904913122, - "scalar.music.song()": 2182453.093923943, - "scalar.network.hostname()": 1082110.5559327994, - "scalar.network.http_method()": 4198329.10703206, - "scalar.network.http_status_code()": 2748536.406657729, - "scalar.network.ipv6()": 1337631.5898478252, - "scalar.network.mac_address()": 1586722.3012562077, - "scalar.network.port()": 2805049.071915181, - "scalar.network.user_agent()": 3978515.9392650602, - "scalar.payment.card_type()": 3917881.2192447972, - "scalar.payment.currency_code()": 4193927.2018529586, - "scalar.payment.cvv()": 1155855.5660951368, - "scalar.payment.expiry_date()": 999310.4695949215, - "scalar.payment.payment_amount()": 1032481.886115251, - "scalar.payment.payment_method()": 3941818.586307165, - "scalar.payment.transaction_id()": 1706339.0386011393, - "scalar.person.female_first_name()": 4176237.287538995, - "scalar.person.first_name()": 4178156.486041495, - "scalar.person.full_name()": 1924631.439683227, - "scalar.person.male_first_name()": 4193223.7534900676, - "scalar.phone.phone_number()": 522971.52197469707, - "scalar.real_estate.amenity()": 4301445.272580506, - "scalar.real_estate.listing_price()": 1383661.72869634, - "scalar.real_estate.listing_status()": 4133939.6003244035, - "scalar.real_estate.neighborhood()": 4299410.9521896355, - "scalar.real_estate.property_type()": 4346881.229143414, - "scalar.real_estate.square_footage()": 1593955.7095529314, - "scalar.science.chemical_element()": 4288348.444593193, - "scalar.science.constellation()": 4282838.511477422, - "scalar.science.element_symbol()": 4310902.330921133, - "scalar.science.metric_prefix()": 3975668.810474074, - "scalar.science.planet()": 3890899.344521151, - "scalar.science.si_unit()": 4275696.943659772, - "scalar.social_media.follower_count()": 1457109.970843669, - "scalar.social_media.hashtag()": 3476205.351818739, - "scalar.social_media.platform()": 4084633.776983099, - "scalar.social_media.post_type()": 4264755.9778904235, - "scalar.social_media.reaction()": 4096681.5587023883, - "scalar.social_media.username()": 1203108.8221336284, - "scalar.sports.athlete()": 2057189.8811735087, - "scalar.sports.league()": 4282104.923336528, - "scalar.sports.position()": 4288532.3532040175, - "scalar.sports.score()": 1182788.0680587771, - "scalar.sports.sport()": 4393287.083959834, - "scalar.sports.team()": 4095171.651928545, - "scalar.sports.venue()": 4355780.304938382, - "scalar.text.buzzword()": 4083132.5422960375, - "scalar.text.headline()": 1902442.7444533517, - "scalar.text.paragraph()": 114805.81755204425, - "scalar.text.quote()": 1883664.8898242814, - "scalar.text.text_block()": 32220.678135636736, - "scalar.weather.alert()": 3573598.251444614, - "scalar.weather.condition()": 4286877.743354403, - "scalar.weather.humidity()": 2457666.6814967045, - "scalar.weather.temperature()": 2250579.4872344406, - "scalar.weather.wind_direction()": 3884853.069577389, - "scalar.weather.wind_speed()": 2344006.372907948, - "schema.generate.100": 252716.71335145808, - "schema.generate.10000": 400547.9496640662, - "schema.generate.100000": 392426.1748987193, - "schema.stream.100000": 417541.41592637764, - "schema.stream_csv.10000": 314036.8167429942, - "schema.stream_csv.100000": 347170.62876675016, - "schema.stream_jsonl.10000": 207242.7184740543, - "schema.stream_jsonl.100000": 209434.65415085526, - "schema.to_csv.10000": 223678.6184470083, - "schema.to_csv.100000": 222309.51575630368, - "startup.init_plus_first_field_us": 42.37819998525083, - "startup.init_us": 3.9439999964088197 -} \ No newline at end of file diff --git a/phase5_benchmark.json b/phase5_benchmark.json deleted file mode 100644 index cdd2dbc..0000000 --- a/phase5_benchmark.json +++ /dev/null @@ -1,777 +0,0 @@ -{ - "batch.address.city(count=N).100": 1919384.0477637553, - "batch.address.city(count=N).10000": 18695083.24707558, - "batch.address.city(count=N).100000": 20396508.2716544, - "batch.address.city(count=N).1000000": 18031501.053894684, - "batch.address.country(count=N).100": 3759386.3234322276, - "batch.address.country(count=N).10000": 21968361.20659649, - "batch.address.country(count=N).100000": 21651113.895279042, - "batch.address.country(count=N).1000000": 18981923.52243223, - "batch.address.full_address(count=N).100": 265181.67682535294, - "batch.address.full_address(count=N).10000": 366081.79045446607, - "batch.address.full_address(count=N).100000": 352063.33767840866, - "batch.address.full_address(count=N).1000000": 367227.52837424737, - "batch.address.latitude(count=N).100": 1035196.2901367578, - "batch.address.latitude(count=N).10000": 1639747.4823098725, - "batch.address.latitude(count=N).100000": 1593915.070993685, - "batch.address.latitude(count=N).1000000": 1591826.9235784265, - "batch.ai_chat.chat_content(count=N).100": 2347419.2107255193, - "batch.ai_chat.chat_content(count=N).10000": 22784229.03443734, - "batch.ai_chat.chat_content(count=N).100000": 24945120.584004857, - "batch.ai_chat.chat_content(count=N).1000000": 19930005.824849572, - "batch.ai_chat.chat_model(count=N).100": 2252252.818483821, - "batch.ai_chat.chat_model(count=N).10000": 21404106.60970822, - "batch.ai_chat.chat_model(count=N).100000": 24421812.9902631, - "batch.ai_chat.chat_model(count=N).1000000": 19983533.56393204, - "batch.ai_chat.chat_role(count=N).100": 2832867.6463604462, - "batch.ai_chat.chat_role(count=N).10000": 10288066.365360165, - "batch.ai_chat.chat_role(count=N).100000": 9419655.013199953, - "batch.ai_chat.chat_role(count=N).1000000": 9399459.158223767, - "batch.ai_chat.chat_tokens(count=N).100": 1262625.927978328, - "batch.ai_chat.chat_tokens(count=N).10000": 2295104.542674361, - "batch.ai_chat.chat_tokens(count=N).100000": 2257621.7297288775, - "batch.ai_chat.chat_tokens(count=N).1000000": 2199258.0583357364, - "batch.ai_prompt.coding_prompt(count=N).100": 3690040.5056983423, - "batch.ai_prompt.coding_prompt(count=N).10000": 22391400.468945708, - "batch.ai_prompt.coding_prompt(count=N).100000": 24365878.41078801, - "batch.ai_prompt.coding_prompt(count=N).1000000": 19797628.647797033, - "batch.ai_prompt.few_shot_prompt(count=N).100": 695410.0636883891, - "batch.ai_prompt.few_shot_prompt(count=N).10000": 813590.2113232843, - "batch.ai_prompt.few_shot_prompt(count=N).100000": 791720.5032950814, - "batch.ai_prompt.few_shot_prompt(count=N).1000000": 778406.0206191089, - "batch.ai_prompt.persona_prompt(count=N).100": 1154734.9321403222, - "batch.ai_prompt.persona_prompt(count=N).10000": 2021141.1068408266, - "batch.ai_prompt.persona_prompt(count=N).100000": 1988565.7460122078, - "batch.ai_prompt.persona_prompt(count=N).1000000": 1911779.7751432925, - "batch.ai_prompt.prompt_template(count=N).100": 1021449.969617875, - "batch.ai_prompt.prompt_template(count=N).10000": 1990049.7201144034, - "batch.ai_prompt.prompt_template(count=N).100000": 1990418.1310852834, - "batch.ai_prompt.prompt_template(count=N).1000000": 1908962.3493062314, - "batch.ai_prompt.system_prompt(count=N).100": 3521128.816088279, - "batch.ai_prompt.system_prompt(count=N).10000": 22401432.534273278, - "batch.ai_prompt.system_prompt(count=N).100000": 25321583.88744986, - "batch.ai_prompt.system_prompt(count=N).1000000": 20093757.51277454, - "batch.ai_prompt.user_prompt(count=N).100": 2564098.347502149, - "batch.ai_prompt.user_prompt(count=N).10000": 22421523.657236766, - "batch.ai_prompt.user_prompt(count=N).100000": 24624476.996779356, - "batch.ai_prompt.user_prompt(count=N).1000000": 19768901.55777507, - "batch.barcode.ean13(count=N).100": 400000.1206994421, - "batch.barcode.ean13(count=N).10000": 578265.3231699411, - "batch.barcode.ean13(count=N).100000": 575131.7628030218, - "batch.barcode.ean13(count=N).1000000": 571209.3902283906, - "batch.barcode.isbn13(count=N).100": 390777.5163374906, - "batch.barcode.isbn13(count=N).10000": 522665.3862017636, - "batch.barcode.isbn13(count=N).100000": 516732.84292201867, - "batch.barcode.isbn13(count=N).1000000": 514295.64457630104, - "batch.color.hex_color(count=N).100": 1706485.2080974234, - "batch.color.hex_color(count=N).10000": 3970617.4805570003, - "batch.color.hex_color(count=N).100000": 3760161.8456019913, - "batch.color.hex_color(count=N).1000000": 3641714.9697943027, - "batch.dt.timezone(count=N).100": 1930500.2465395688, - "batch.dt.timezone(count=N).10000": 20395675.77989123, - "batch.dt.timezone(count=N).100000": 23001724.90686172, - "batch.dt.timezone(count=N).1000000": 19885815.638333756, - "batch.dt.unix_timestamp(count=N).100": 1351351.6910902928, - "batch.dt.unix_timestamp(count=N).10000": 2575593.6779637844, - "batch.dt.unix_timestamp(count=N).100000": 2511912.7468444966, - "batch.dt.unix_timestamp(count=N).1000000": 2509984.0891160048, - "batch.ecommerce.order_id(count=N).100": 990099.4593024529, - "batch.ecommerce.order_id(count=N).10000": 1675519.0124482063, - "batch.ecommerce.order_id(count=N).100000": 1632863.6681727506, - "batch.ecommerce.order_id(count=N).1000000": 1591041.2919222675, - "batch.ecommerce.product_name(count=N).100": 777000.4832093349, - "batch.ecommerce.product_name(count=N).10000": 1356208.036192179, - "batch.ecommerce.product_name(count=N).100000": 1320660.2779738924, - "batch.ecommerce.product_name(count=N).1000000": 1307077.4583741531, - "batch.ecommerce.sku(count=N).100": 478240.1625694887, - "batch.ecommerce.sku(count=N).10000": 527573.6367738895, - "batch.ecommerce.sku(count=N).100000": 539736.1879113173, - "batch.ecommerce.sku(count=N).1000000": 534647.4826031057, - "batch.ecommerce.tracking_number(count=N).100": 732600.7774667683, - "batch.ecommerce.tracking_number(count=N).10000": 1272264.6290292477, - "batch.ecommerce.tracking_number(count=N).100000": 1224745.7435922395, - "batch.ecommerce.tracking_number(count=N).1000000": 1233954.4278738035, - "batch.file.file_name(count=N).100": 836120.5455557762, - "batch.file.file_name(count=N).10000": 1909016.2997453099, - "batch.file.file_name(count=N).100000": 1849916.2923732395, - "batch.file.file_name(count=N).1000000": 1819376.983551412, - "batch.finance.bic(count=N).100": 744601.7773493709, - "batch.finance.bic(count=N).10000": 1496535.5186332983, - "batch.finance.bic(count=N).100000": 1485665.5568966004, - "batch.finance.bic(count=N).1000000": 1459639.6499868734, - "batch.finance.bitcoin_address(count=N).100": 280112.10413075564, - "batch.finance.bitcoin_address(count=N).10000": 351681.7422873601, - "batch.finance.bitcoin_address(count=N).100000": 345629.68540064455, - "batch.finance.bitcoin_address(count=N).1000000": 348576.2594357527, - "batch.finance.credit_card_number(count=N).100": 381679.36609639454, - "batch.finance.credit_card_number(count=N).10000": 456208.5402793438, - "batch.finance.credit_card_number(count=N).100000": 479350.7672879394, - "batch.finance.credit_card_number(count=N).1000000": 475039.02683808486, - "batch.finance.routing_number(count=N).100": 402090.82228901424, - "batch.finance.routing_number(count=N).10000": 643264.697890269, - "batch.finance.routing_number(count=N).100000": 622312.7758844385, - "batch.finance.routing_number(count=N).1000000": 622399.2657636027, - "batch.food.beverage(count=N).100": 3367004.1243174807, - "batch.food.beverage(count=N).10000": 19293845.69253192, - "batch.food.beverage(count=N).100000": 20592656.84238426, - "batch.food.beverage(count=N).1000000": 16979571.871759135, - "batch.food.cooking_method(count=N).100": 2604162.6271016872, - "batch.food.cooking_method(count=N).10000": 20889908.594402436, - "batch.food.cooking_method(count=N).100000": 22983750.12946853, - "batch.food.cooking_method(count=N).1000000": 18455734.84088486, - "batch.food.cuisine(count=N).100": 3412970.416194847, - "batch.food.cuisine(count=N).10000": 23174969.633544013, - "batch.food.cuisine(count=N).100000": 25335697.87489981, - "batch.food.cuisine(count=N).1000000": 19870958.015397225, - "batch.food.dietary_tag(count=N).100": 2304148.462324606, - "batch.food.dietary_tag(count=N).10000": 19692791.471007705, - "batch.food.dietary_tag(count=N).100000": 20947672.588554583, - "batch.food.dietary_tag(count=N).1000000": 17224422.18446193, - "batch.food.dish(count=N).100": 2049179.3897263526, - "batch.food.dish(count=N).10000": 18321726.83696973, - "batch.food.dish(count=N).100000": 19638648.835125476, - "batch.food.dish(count=N).1000000": 17205129.893350456, - "batch.food.ingredient(count=N).100": 2881841.773268785, - "batch.food.ingredient(count=N).10000": 21276597.105617683, - "batch.food.ingredient(count=N).100000": 23336678.079810906, - "batch.food.ingredient(count=N).1000000": 18883244.8631187, - "batch.food.restaurant(count=N).100": 1043840.9985952394, - "batch.food.restaurant(count=N).10000": 2113182.0022731517, - "batch.food.restaurant(count=N).100000": 2061218.1786132674, - "batch.food.restaurant(count=N).1000000": 1990267.9876329885, - "batch.geo.continent(count=N).100": 2358485.5584903383, - "batch.geo.continent(count=N).10000": 19459040.428673014, - "batch.geo.continent(count=N).100000": 20052939.678290505, - "batch.geo.continent(count=N).1000000": 17777240.498615533, - "batch.geo.geo_coordinate(count=N).100": 519210.61204456905, - "batch.geo.geo_coordinate(count=N).10000": 752898.6614963843, - "batch.geo.geo_coordinate(count=N).100000": 750974.0134558048, - "batch.geo.geo_coordinate(count=N).1000000": 749445.2419466766, - "batch.geo.geo_hash(count=N).100": 535618.9028146707, - "batch.geo.geo_hash(count=N).10000": 846861.9583990634, - "batch.geo.geo_hash(count=N).100000": 827430.9922956966, - "batch.geo.geo_hash(count=N).1000000": 835936.4393907241, - "batch.geo.mountain_range(count=N).100": 3236245.697342792, - "batch.geo.mountain_range(count=N).10000": 18348625.235340532, - "batch.geo.mountain_range(count=N).100000": 21072150.83830266, - "batch.geo.mountain_range(count=N).1000000": 18472781.249553297, - "batch.geo.ocean(count=N).100": 2958577.733691534, - "batch.geo.ocean(count=N).10000": 14446691.038425632, - "batch.geo.ocean(count=N).100000": 23633398.22433416, - "batch.geo.ocean(count=N).1000000": 20312446.040516175, - "batch.geo.river(count=N).100": 7812511.566061245, - "batch.geo.river(count=N).10000": 20108583.883748557, - "batch.geo.river(count=N).100000": 21886627.35485915, - "batch.geo.river(count=N).1000000": 17804746.00995454, - "batch.government.national_id(count=N).100": 1013170.681282856, - "batch.government.national_id(count=N).10000": 1784598.89234775, - "batch.government.national_id(count=N).100000": 1695915.5576562956, - "batch.government.national_id(count=N).1000000": 1720779.4440220245, - "batch.government.passport_number(count=N).100": 762776.7943594935, - "batch.government.passport_number(count=N).10000": 1256502.3896985094, - "batch.government.passport_number(count=N).100000": 1220682.2631845446, - "batch.government.passport_number(count=N).1000000": 1200206.4356257163, - "batch.government.ssn(count=N).100": 471475.75185586675, - "batch.government.ssn(count=N).10000": 607312.0368896725, - "batch.government.ssn(count=N).100000": 637308.0108816564, - "batch.government.ssn(count=N).1000000": 645189.5954168222, - "batch.government.tax_id(count=N).100": 761614.9011666363, - "batch.government.tax_id(count=N).10000": 1164930.9278849917, - "batch.government.tax_id(count=N).100000": 1150910.8897323187, - "batch.government.tax_id(count=N).1000000": 1140326.9203263575, - "batch.hardware.cpu(count=N).100": 3322259.537355399, - "batch.hardware.cpu(count=N).10000": 22862370.917778146, - "batch.hardware.cpu(count=N).100000": 24600851.276125178, - "batch.hardware.cpu(count=N).1000000": 19743960.331134986, - "batch.hardware.form_factor(count=N).100": 3759402.7764648213, - "batch.hardware.form_factor(count=N).10000": 21159538.20126298, - "batch.hardware.form_factor(count=N).100000": 22412981.697847694, - "batch.hardware.form_factor(count=N).1000000": 18942048.693780225, - "batch.hardware.gpu(count=N).100": 2518887.280255468, - "batch.hardware.gpu(count=N).10000": 19642505.039861556, - "batch.hardware.gpu(count=N).100000": 23361211.054402556, - "batch.hardware.gpu(count=N).1000000": 19470821.98720532, - "batch.hardware.manufacturer(count=N).100": 2976188.437471849, - "batch.hardware.manufacturer(count=N).10000": 13480721.467341408, - "batch.hardware.manufacturer(count=N).100000": 19564111.448230825, - "batch.hardware.manufacturer(count=N).1000000": 18497349.326884948, - "batch.hardware.peripheral(count=N).100": 3731331.0797485784, - "batch.hardware.peripheral(count=N).10000": 21463830.90070566, - "batch.hardware.peripheral(count=N).100000": 22476961.114744347, - "batch.hardware.peripheral(count=N).1000000": 18343911.66936518, - "batch.hardware.ram_size(count=N).100": 2762436.5557717355, - "batch.hardware.ram_size(count=N).10000": 22301520.388521925, - "batch.hardware.ram_size(count=N).100000": 24491795.206089478, - "batch.hardware.ram_size(count=N).1000000": 19694731.655162964, - "batch.hardware.ram_type(count=N).100": 3787883.351706986, - "batch.hardware.ram_type(count=N).10000": 20584603.82603361, - "batch.hardware.ram_type(count=N).100000": 22018671.801559143, - "batch.hardware.ram_type(count=N).1000000": 17854719.70380245, - "batch.hardware.storage(count=N).100": 2849000.0537300957, - "batch.hardware.storage(count=N).10000": 22680880.9859895, - "batch.hardware.storage(count=N).100000": 24226566.86373253, - "batch.hardware.storage(count=N).1000000": 19945190.598261524, - "batch.internet.email(count=N).100": 344115.6218064405, - "batch.internet.email(count=N).10000": 1098164.9717914555, - "batch.internet.email(count=N).100000": 1075001.8013613215, - "batch.internet.email(count=N).1000000": 1023558.9492037363, - "batch.internet.ipv4(count=N).100": 1116071.6307762668, - "batch.internet.ipv4(count=N).10000": 2504633.5613014316, - "batch.internet.ipv4(count=N).100000": 2412388.0998308617, - "batch.internet.ipv4(count=N).1000000": 2401960.3839263767, - "batch.internet.safe_email(count=N).100": 721500.6817771394, - "batch.internet.safe_email(count=N).10000": 982685.0819363684, - "batch.internet.safe_email(count=N).100000": 1065556.2158222722, - "batch.internet.safe_email(count=N).1000000": 1034134.8257407887, - "batch.internet.slug(count=N).100": 557103.1577418147, - "batch.internet.slug(count=N).10000": 1068033.7443541428, - "batch.internet.slug(count=N).100000": 1040075.1353092963, - "batch.internet.slug(count=N).1000000": 1018732.971332896, - "batch.legal.case_number(count=N).100": 553097.4071832383, - "batch.legal.case_number(count=N).10000": 830095.9594370472, - "batch.legal.case_number(count=N).100000": 805165.9450462691, - "batch.legal.case_number(count=N).1000000": 806312.6540285788, - "batch.legal.court(count=N).100": 2074688.0316881423, - "batch.legal.court(count=N).10000": 22060447.607065253, - "batch.legal.court(count=N).100000": 24218352.61564006, - "batch.legal.court(count=N).1000000": 19469229.875194553, - "batch.legal.judge(count=N).100": 1186240.4167201791, - "batch.legal.judge(count=N).10000": 2029879.8202746317, - "batch.legal.judge(count=N).100000": 2027616.1323976284, - "batch.legal.judge(count=N).1000000": 2008484.6425965647, - "batch.legal.law_firm(count=N).100": 1162789.7137674538, - "batch.legal.law_firm(count=N).10000": 2124630.852966634, - "batch.legal.law_firm(count=N).100000": 2069510.7284987888, - "batch.legal.law_firm(count=N).1000000": 2058272.578221225, - "batch.legal.legal_term(count=N).100": 2976198.749224762, - "batch.legal.legal_term(count=N).10000": 18730099.59081289, - "batch.legal.legal_term(count=N).100000": 20941093.04171668, - "batch.legal.legal_term(count=N).1000000": 17507431.90436586, - "batch.legal.practice_area(count=N).100": 3875974.457178955, - "batch.legal.practice_area(count=N).10000": 23596037.68142854, - "batch.legal.practice_area(count=N).100000": 25053238.075472012, - "batch.legal.practice_area(count=N).1000000": 19830410.313982517, - "batch.legal.verdict(count=N).100": 2105262.606428085, - "batch.legal.verdict(count=N).10000": 19015020.19171448, - "batch.legal.verdict(count=N).100000": 22091148.030155394, - "batch.legal.verdict(count=N).1000000": 18768381.28300163, - "batch.llm.agent_name(count=N).100": 2212389.628732953, - "batch.llm.agent_name(count=N).10000": 22306489.321368586, - "batch.llm.agent_name(count=N).100000": 24554942.121359624, - "batch.llm.agent_name(count=N).1000000": 19724721.780910425, - "batch.llm.api_key(count=N).100": 70997.51434073926, - "batch.llm.api_key(count=N).10000": 70725.10917020375, - "batch.llm.api_key(count=N).100000": 72784.24029289125, - "batch.llm.api_key(count=N).1000000": 72410.81115101367, - "batch.llm.chunk_id(count=N).100": 1344086.3025766283, - "batch.llm.chunk_id(count=N).10000": 3728004.860765119, - "batch.llm.chunk_id(count=N).100000": 3508181.086269946, - "batch.llm.chunk_id(count=N).1000000": 3463071.536278525, - "batch.llm.cost_estimate(count=N).100": 947867.4026028482, - "batch.llm.cost_estimate(count=N).10000": 1583105.0976003704, - "batch.llm.cost_estimate(count=N).100000": 1556645.5537711864, - "batch.llm.cost_estimate(count=N).1000000": 1528256.3130076765, - "batch.llm.finish_reason(count=N).100": 2066114.8787862023, - "batch.llm.finish_reason(count=N).10000": 21838829.71456, - "batch.llm.finish_reason(count=N).100000": 23992898.360839628, - "batch.llm.finish_reason(count=N).1000000": 19404928.477316696, - "batch.llm.harm_label(count=N).100": 3095973.974878809, - "batch.llm.harm_label(count=N).10000": 22680880.9859895, - "batch.llm.harm_label(count=N).100000": 24630541.478907537, - "batch.llm.harm_label(count=N).1000000": 19589713.054562632, - "batch.llm.model_name(count=N).100": 4032265.217105572, - "batch.llm.model_name(count=N).10000": 24390245.167841088, - "batch.llm.model_name(count=N).100000": 23245543.058041856, - "batch.llm.model_name(count=N).1000000": 19450182.25491656, - "batch.llm.moderation_category(count=N).100": 2083332.6280507473, - "batch.llm.moderation_category(count=N).10000": 19007791.465901334, - "batch.llm.moderation_category(count=N).100000": 20680812.70386495, - "batch.llm.moderation_category(count=N).1000000": 17160723.89103386, - "batch.llm.provider_name(count=N).100": 2590669.4751064624, - "batch.llm.provider_name(count=N).10000": 19786307.614239156, - "batch.llm.provider_name(count=N).100000": 21102834.137118317, - "batch.llm.provider_name(count=N).1000000": 17650443.564983107, - "batch.llm.rate_limit_header(count=N).100": 851789.027604521, - "batch.llm.rate_limit_header(count=N).10000": 1548610.885818662, - "batch.llm.rate_limit_header(count=N).100000": 1457001.6964225513, - "batch.llm.rate_limit_header(count=N).1000000": 1462326.9483007982, - "batch.llm.similarity_score(count=N).100": 882612.1606181414, - "batch.llm.similarity_score(count=N).10000": 1685203.9053397083, - "batch.llm.similarity_score(count=N).100000": 1636714.785152092, - "batch.llm.similarity_score(count=N).1000000": 1633615.8944951596, - "batch.llm.token_count(count=N).100": 1164144.9557174318, - "batch.llm.token_count(count=N).10000": 2147581.7924879165, - "batch.llm.token_count(count=N).100000": 2201178.9542750046, - "batch.llm.token_count(count=N).1000000": 2174475.5709112, - "batch.llm.tool_call_id(count=N).100": 116238.51719118514, - "batch.llm.tool_call_id(count=N).10000": 120083.62609112514, - "batch.llm.tool_call_id(count=N).100000": 121143.0623184183, - "batch.llm.tool_call_id(count=N).1000000": 120231.21520642383, - "batch.llm.tool_name(count=N).100": 2525255.5678046574, - "batch.llm.tool_name(count=N).10000": 22202484.040066097, - "batch.llm.tool_name(count=N).100000": 23872615.73075064, - "batch.llm.tool_name(count=N).1000000": 19376465.36086221, - "batch.logistics.carrier(count=N).100": 2898548.2151353285, - "batch.logistics.carrier(count=N).10000": 18570101.24349285, - "batch.logistics.carrier(count=N).100000": 20343396.76495373, - "batch.logistics.carrier(count=N).1000000": 17273245.481715403, - "batch.logistics.container_type(count=N).100": 2824865.116432027, - "batch.logistics.container_type(count=N).10000": 22660322.586261567, - "batch.logistics.container_type(count=N).100000": 24558560.353078738, - "batch.logistics.container_type(count=N).1000000": 19234024.234969985, - "batch.logistics.freight_class(count=N).100": 1763665.864284981, - "batch.logistics.freight_class(count=N).10000": 4622994.655583737, - "batch.logistics.freight_class(count=N).100000": 4728244.157510802, - "batch.logistics.freight_class(count=N).1000000": 4462164.193426146, - "batch.logistics.hs_code(count=N).100": 670241.4129639253, - "batch.logistics.hs_code(count=N).10000": 1019326.4208868813, - "batch.logistics.hs_code(count=N).100000": 991372.087882908, - "batch.logistics.hs_code(count=N).1000000": 974383.0791412368, - "batch.logistics.package_type(count=N).100": 3846159.0020507034, - "batch.logistics.package_type(count=N).10000": 22371363.270212967, - "batch.logistics.package_type(count=N).100000": 22348865.988050368, - "batch.logistics.package_type(count=N).1000000": 18594272.97832704, - "batch.logistics.shipping_method(count=N).100": 2932549.012860298, - "batch.logistics.shipping_method(count=N).10000": 18921473.50720222, - "batch.logistics.shipping_method(count=N).100000": 20828993.94756718, - "batch.logistics.shipping_method(count=N).1000000": 17068749.50817683, - "batch.logistics.tracking_status(count=N).100": 2941174.2160803676, - "batch.logistics.tracking_status(count=N).10000": 19630936.92845029, - "batch.logistics.tracking_status(count=N).100000": 20614306.183045443, - "batch.logistics.tracking_status(count=N).1000000": 17972293.89743143, - "batch.logistics.warehouse(count=N).100": 1138952.5523869128, - "batch.logistics.warehouse(count=N).10000": 2088729.2096609154, - "batch.logistics.warehouse(count=N).100000": 2051071.6851168098, - "batch.logistics.warehouse(count=N).1000000": 2014627.4039404409, - "batch.medical.blood_type(count=N).100": 2044988.8088980308, - "batch.medical.blood_type(count=N).10000": 18577000.83175424, - "batch.medical.blood_type(count=N).100000": 22311468.582174078, - "batch.medical.blood_type(count=N).1000000": 19818305.800886504, - "batch.medical.diagnosis(count=N).100": 2341921.6968837753, - "batch.medical.diagnosis(count=N).10000": 17717930.8516903, - "batch.medical.diagnosis(count=N).100000": 19688139.76512856, - "batch.medical.diagnosis(count=N).1000000": 17194745.975049138, - "batch.medical.drug_name(count=N).100": 2145922.4893889697, - "batch.medical.drug_name(count=N).10000": 20429009.109409712, - "batch.medical.drug_name(count=N).100000": 22945779.090460856, - "batch.medical.drug_name(count=N).1000000": 20011526.6152768, - "batch.medical.icd10_code(count=N).100": 612370.0106078407, - "batch.medical.icd10_code(count=N).10000": 882013.1014956735, - "batch.medical.icd10_code(count=N).100000": 873038.3918669734, - "batch.medical.icd10_code(count=N).1000000": 824367.4443703013, - "batch.medical.medical_record_number(count=N).100": 997009.4817600427, - "batch.medical.medical_record_number(count=N).10000": 2000080.001946542, - "batch.medical.medical_record_number(count=N).100000": 1917913.3130028062, - "batch.medical.medical_record_number(count=N).1000000": 1897345.632256091, - "batch.misc.uuid4(count=N).100": 1017293.4803900089, - "batch.misc.uuid4(count=N).10000": 1711654.652014871, - "batch.misc.uuid4(count=N).100000": 1669451.8690863869, - "batch.misc.uuid4(count=N).1000000": 1629392.945354129, - "batch.misc.uuid7(count=N).100": 712250.6040080363, - "batch.misc.uuid7(count=N).10000": 1110247.5833480775, - "batch.misc.uuid7(count=N).100000": 1076793.6955738615, - "batch.misc.uuid7(count=N).1000000": 1088145.320416534, - "batch.music.album(count=N).100": 1128668.4753530566, - "batch.music.album(count=N).10000": 2138854.439762777, - "batch.music.album(count=N).100000": 2057549.6595367733, - "batch.music.album(count=N).1000000": 2030620.12709143, - "batch.music.artist(count=N).100": 2732237.01366447, - "batch.music.artist(count=N).10000": 22436615.665421803, - "batch.music.artist(count=N).100000": 24709051.129543032, - "batch.music.artist(count=N).1000000": 19921390.226402942, - "batch.music.duration(count=N).100": 864303.7413870823, - "batch.music.duration(count=N).10000": 1100933.5900779571, - "batch.music.duration(count=N).100000": 1096398.659725014, - "batch.music.duration(count=N).1000000": 1076288.2819834342, - "batch.music.genre(count=N).100": 2020200.890870692, - "batch.music.genre(count=N).10000": 21097046.395926543, - "batch.music.genre(count=N).100000": 22769707.025329836, - "batch.music.genre(count=N).1000000": 18976592.340915225, - "batch.music.instrument(count=N).100": 2242152.9509724337, - "batch.music.instrument(count=N).10000": 21886627.91251703, - "batch.music.instrument(count=N).100000": 24467225.921260733, - "batch.music.instrument(count=N).1000000": 20009644.65693974, - "batch.music.record_label(count=N).100": 2832867.6463604462, - "batch.music.record_label(count=N).10000": 22351361.900447473, - "batch.music.record_label(count=N).100000": 24705387.710871365, - "batch.music.record_label(count=N).1000000": 19705520.68634443, - "batch.music.song(count=N).100": 1293660.9516236398, - "batch.music.song(count=N).10000": 2366191.8881641603, - "batch.music.song(count=N).100000": 2248514.8562771995, - "batch.music.song(count=N).1000000": 2213970.9987101667, - "batch.network.hostname(count=N).100": 732600.1526617297, - "batch.network.hostname(count=N).10000": 1186366.2896934908, - "batch.network.hostname(count=N).100000": 1140102.6548018055, - "batch.network.hostname(count=N).1000000": 1150702.3024122093, - "batch.network.ipv6(count=N).100": 818330.6111328106, - "batch.network.ipv6(count=N).10000": 1409781.06195989, - "batch.network.ipv6(count=N).100000": 1413353.6482666282, - "batch.network.ipv6(count=N).1000000": 1407221.0704302182, - "batch.network.mac_address(count=N).100": 951474.9183098841, - "batch.network.mac_address(count=N).10000": 1536051.124748472, - "batch.network.mac_address(count=N).100000": 1739136.484139893, - "batch.network.mac_address(count=N).1000000": 1704085.25468468, - "batch.network.user_agent(count=N).100": 2666671.196627365, - "batch.network.user_agent(count=N).10000": 20631314.85643714, - "batch.network.user_agent(count=N).100000": 22918958.325145546, - "batch.network.user_agent(count=N).1000000": 19775703.988709982, - "batch.payment.card_type(count=N).100": 2341921.6968837753, - "batch.payment.card_type(count=N).10000": 18921473.50720222, - "batch.payment.card_type(count=N).100000": 21090816.99326827, - "batch.payment.card_type(count=N).1000000": 18571171.22733172, - "batch.payment.currency_code(count=N).100": 1886790.5189701868, - "batch.payment.currency_code(count=N).10000": 20639836.41783901, - "batch.payment.currency_code(count=N).100000": 22845132.655833915, - "batch.payment.currency_code(count=N).1000000": 19582309.334703755, - "batch.payment.cvv(count=N).100": 838926.3411204, - "batch.payment.cvv(count=N).10000": 1265646.5593629887, - "batch.payment.cvv(count=N).100000": 1276628.8817705198, - "batch.payment.cvv(count=N).1000000": 1259887.7566485722, - "batch.payment.expiry_date(count=N).100": 771605.3008520061, - "batch.payment.expiry_date(count=N).10000": 1015321.206342215, - "batch.payment.expiry_date(count=N).100000": 1002925.5341093455, - "batch.payment.expiry_date(count=N).1000000": 984024.654948145, - "batch.payment.payment_amount(count=N).100": 757575.3340765095, - "batch.payment.payment_amount(count=N).10000": 1125099.8621486765, - "batch.payment.payment_amount(count=N).100000": 1075798.619174531, - "batch.payment.payment_amount(count=N).1000000": 1086222.731055705, - "batch.payment.transaction_id(count=N).100": 1070663.665960364, - "batch.payment.transaction_id(count=N).10000": 1814223.5303880214, - "batch.payment.transaction_id(count=N).100000": 1754659.9392996202, - "batch.payment.transaction_id(count=N).1000000": 1753417.2790717573, - "batch.person.first_name(count=N).100": 5181338.950212925, - "batch.person.first_name(count=N).10000": 18552874.6742693, - "batch.person.first_name(count=N).100000": 21281123.457642548, - "batch.person.first_name(count=N).1000000": 19457599.96310503, - "batch.person.full_name(count=N).100": 1388887.295869201, - "batch.person.full_name(count=N).10000": 5900401.286668199, - "batch.person.full_name(count=N).100000": 6061487.728339975, - "batch.person.full_name(count=N).1000000": 5186539.063639295, - "batch.real_estate.amenity(count=N).100": 3067483.213347046, - "batch.real_estate.amenity(count=N).10000": 18559761.465277318, - "batch.real_estate.amenity(count=N).100000": 19467372.688758805, - "batch.real_estate.amenity(count=N).1000000": 17573580.583669987, - "batch.real_estate.listing_price(count=N).100": 811029.9584851469, - "batch.real_estate.listing_price(count=N).10000": 1377391.4988865973, - "batch.real_estate.listing_price(count=N).100000": 1347572.6830862113, - "batch.real_estate.listing_price(count=N).1000000": 1319890.6865277912, - "batch.real_estate.listing_status(count=N).100": 2906974.2844186346, - "batch.real_estate.listing_status(count=N).10000": 19062141.260640707, - "batch.real_estate.listing_status(count=N).100000": 20275750.397899877, - "batch.real_estate.listing_status(count=N).1000000": 16912890.181009408, - "batch.real_estate.neighborhood(count=N).100": 1655629.2965738429, - "batch.real_estate.neighborhood(count=N).10000": 18986138.22765371, - "batch.real_estate.neighborhood(count=N).100000": 19629782.661002062, - "batch.real_estate.neighborhood(count=N).1000000": 17124812.466674518, - "batch.real_estate.property_type(count=N).100": 2873560.5633425885, - "batch.real_estate.property_type(count=N).10000": 21579627.14943767, - "batch.real_estate.property_type(count=N).100000": 22977413.41046955, - "batch.real_estate.property_type(count=N).1000000": 18924698.65652321, - "batch.real_estate.square_footage(count=N).100": 906619.0653203429, - "batch.real_estate.square_footage(count=N).10000": 1632386.5587697178, - "batch.real_estate.square_footage(count=N).100000": 1574071.8897739465, - "batch.real_estate.square_footage(count=N).1000000": 1566504.1313856605, - "batch.science.chemical_element(count=N).100": 2994010.049354488, - "batch.science.chemical_element(count=N).10000": 14492753.301597506, - "batch.science.chemical_element(count=N).100000": 22032740.162479743, - "batch.science.chemical_element(count=N).1000000": 19819601.975107826, - "batch.science.constellation(count=N).100": 2762436.5557717355, - "batch.science.constellation(count=N).10000": 20968760.68310347, - "batch.science.constellation(count=N).100000": 21778900.42032837, - "batch.science.constellation(count=N).1000000": 18660093.32828764, - "batch.science.element_symbol(count=N).100": 2645498.7964274716, - "batch.science.element_symbol(count=N).10000": 22371363.270212967, - "batch.science.element_symbol(count=N).100000": 24470818.346860852, - "batch.science.element_symbol(count=N).1000000": 19568514.23771629, - "batch.science.planet(count=N).100": 3676474.064182567, - "batch.science.planet(count=N).10000": 22722109.897551335, - "batch.science.planet(count=N).100000": 24515211.824744184, - "batch.science.planet(count=N).1000000": 19952990.748914707, - "batch.science.si_unit(count=N).100": 3194887.617205661, - "batch.science.si_unit(count=N).10000": 21673167.637046613, - "batch.science.si_unit(count=N).100000": 24301336.46769209, - "batch.science.si_unit(count=N).1000000": 19968609.320991468, - "batch.social_media.follower_count(count=N).100": 967118.2462488699, - "batch.social_media.follower_count(count=N).10000": 1519133.4711811554, - "batch.social_media.follower_count(count=N).100000": 1485008.1018613642, - "batch.social_media.follower_count(count=N).1000000": 1481821.7518502048, - "batch.social_media.hashtag(count=N).100": 1470589.6256730268, - "batch.social_media.hashtag(count=N).10000": 3823068.3797703935, - "batch.social_media.hashtag(count=N).100000": 3627486.1864780947, - "batch.social_media.hashtag(count=N).1000000": 3520147.5645293132, - "batch.social_media.platform(count=N).100": 2173912.9952396257, - "batch.social_media.platform(count=N).10000": 21872266.498409346, - "batch.social_media.platform(count=N).100000": 24223045.789490767, - "batch.social_media.platform(count=N).1000000": 18965183.72217853, - "batch.social_media.post_type(count=N).100": 4347836.993845157, - "batch.social_media.post_type(count=N).10000": 23752972.163738035, - "batch.social_media.post_type(count=N).100000": 23474729.690118637, - "batch.social_media.post_type(count=N).1000000": 19949010.340756238, - "batch.social_media.reaction(count=N).100": 3759386.3234322276, - "batch.social_media.reaction(count=N).10000": 22517450.743029106, - "batch.social_media.reaction(count=N).100000": 24267132.91557386, - "batch.social_media.reaction(count=N).1000000": 19780984.95257307, - "batch.social_media.username(count=N).100": 692521.0855330518, - "batch.social_media.username(count=N).10000": 1213592.2336626179, - "batch.social_media.username(count=N).100000": 1192557.4861025526, - "batch.social_media.username(count=N).1000000": 1183231.0134076432, - "batch.sports.athlete(count=N).100": 1107419.845785133, - "batch.sports.athlete(count=N).10000": 2102872.521746475, - "batch.sports.athlete(count=N).100000": 2058443.320124313, - "batch.sports.athlete(count=N).1000000": 2018953.9395967578, - "batch.sports.league(count=N).100": 2392346.2695545857, - "batch.sports.league(count=N).10000": 16123832.335644059, - "batch.sports.league(count=N).100000": 20585874.10527754, - "batch.sports.league(count=N).1000000": 17312599.76184453, - "batch.sports.position(count=N).100": 3597125.038525963, - "batch.sports.position(count=N).10000": 19849146.70433489, - "batch.sports.position(count=N).100000": 21281123.457642548, - "batch.sports.position(count=N).1000000": 17974329.06445278, - "batch.sports.score(count=N).100": 852514.350138944, - "batch.sports.score(count=N).10000": 1312801.119095825, - "batch.sports.score(count=N).100000": 1294161.6483936254, - "batch.sports.score(count=N).1000000": 1281519.6158217099, - "batch.sports.sport(count=N).100": 1972385.155794356, - "batch.sports.sport(count=N).10000": 21436224.48065422, - "batch.sports.sport(count=N).100000": 22260807.722584374, - "batch.sports.sport(count=N).1000000": 19370460.06205454, - "batch.sports.team(count=N).100": 3816781.789502215, - "batch.sports.team(count=N).10000": 22634676.936933093, - "batch.sports.team(count=N).100000": 25287647.2405815, - "batch.sports.team(count=N).1000000": 19888465.497510962, - "batch.sports.venue(count=N).100": 3267973.8377489992, - "batch.sports.venue(count=N).10000": 22326410.42648707, - "batch.sports.venue(count=N).100000": 24567007.041947383, - "batch.sports.venue(count=N).1000000": 19806843.647242714, - "batch.text.buzzword(count=N).100": 4016071.229469491, - "batch.text.buzzword(count=N).10000": 19692791.471007705, - "batch.text.buzzword(count=N).100000": 19368959.439038195, - "batch.text.buzzword(count=N).1000000": 17134025.761620775, - "batch.text.headline(count=N).100": 1283698.7830921088, - "batch.text.headline(count=N).10000": 6063178.370536992, - "batch.text.headline(count=N).100000": 5356071.669747917, - "batch.text.headline(count=N).1000000": 4705282.291129143, - "batch.text.paragraph(count=N).100": 108849.45994923952, - "batch.text.paragraph(count=N).10000": 114885.35011437947, - "batch.text.paragraph(count=N).100000": 115838.84176527725, - "batch.text.paragraph(count=N).1000000": 114803.21701095262, - "batch.text.quote(count=N).100": 1114825.9472199222, - "batch.text.quote(count=N).10000": 4167187.573284117, - "batch.text.quote(count=N).100000": 3354939.146603685, - "batch.text.quote(count=N).1000000": 3155898.215232468, - "batch.weather.alert(count=N).100": 2358485.5584903383, - "batch.weather.alert(count=N).10000": 22851921.855941344, - "batch.weather.alert(count=N).100000": 24518217.19406876, - "batch.weather.alert(count=N).1000000": 19670789.65817053, - "batch.weather.condition(count=N).100": 3086418.4309808346, - "batch.weather.condition(count=N).10000": 19952115.932199452, - "batch.weather.condition(count=N).100000": 20862018.848722544, - "batch.weather.condition(count=N).1000000": 17354573.019562364, - "batch.weather.humidity(count=N).100": 1466277.0093183552, - "batch.weather.humidity(count=N).10000": 2612193.7683529677, - "batch.weather.humidity(count=N).100000": 2464863.3753417735, - "batch.weather.humidity(count=N).1000000": 2420762.980521898, - "batch.weather.temperature(count=N).100": 1020407.666301582, - "batch.weather.temperature(count=N).10000": 2409580.461637616, - "batch.weather.temperature(count=N).100000": 2317577.672466918, - "batch.weather.temperature(count=N).1000000": 2264280.477399649, - "batch.weather.wind_direction(count=N).100": 2057612.2873205564, - "batch.weather.wind_direction(count=N).10000": 22281643.6559605, - "batch.weather.wind_direction(count=N).100000": 24585730.41355288, - "batch.weather.wind_direction(count=N).1000000": 19625968.308439624, - "batch.weather.wind_speed(count=N).100": 1223989.6084058376, - "batch.weather.wind_speed(count=N).10000": 2418438.1416106825, - "batch.weather.wind_speed(count=N).100000": 2412527.7797738, - "batch.weather.wind_speed(count=N).1000000": 2326474.1117512165, - "scalar.address.city()": 3870118.8112994996, - "scalar.address.coordinate()": 677864.9968786013, - "scalar.address.country()": 3811992.598731471, - "scalar.address.country_code()": 3693034.9183624554, - "scalar.address.full_address()": 304909.65617827204, - "scalar.address.latitude()": 1383757.4620373962, - "scalar.address.longitude()": 1374835.025262906, - "scalar.ai_chat.chat_content()": 2496255.6148016355, - "scalar.ai_chat.chat_model()": 2642775.931444086, - "scalar.ai_chat.chat_role()": 1241757.8191548255, - "scalar.ai_chat.chat_tokens()": 1546096.904800221, - "scalar.ai_prompt.coding_prompt()": 4219765.380240845, - "scalar.ai_prompt.creative_prompt()": 3901221.1423816225, - "scalar.ai_prompt.few_shot_prompt()": 793663.3905458429, - "scalar.ai_prompt.persona_prompt()": 1675097.9777922828, - "scalar.ai_prompt.prompt_template()": 966687.9270607135, - "scalar.ai_prompt.system_prompt()": 3671745.8934158855, - "scalar.ai_prompt.user_prompt()": 4219231.251194803, - "scalar.barcode.ean13()": 555750.0647285541, - "scalar.barcode.ean8()": 677332.3958582078, - "scalar.barcode.isbn10()": 672974.6830950622, - "scalar.barcode.isbn13()": 503494.2498555257, - "scalar.color.hex_color()": 3327011.9336062795, - "scalar.color.rgb()": 5232314.773580666, - "scalar.company.company_name()": 1838235.3012173704, - "scalar.dt.date()": 778022.4247515255, - "scalar.dt.timezone()": 3092050.2789201774, - "scalar.dt.unix_timestamp()": 1986649.7030005462, - "scalar.ecommerce.order_id()": 1565337.1778355753, - "scalar.ecommerce.price_with_currency()": 1093027.5713659867, - "scalar.ecommerce.product_category()": 3839361.2398469015, - "scalar.ecommerce.product_name()": 1188749.6693894546, - "scalar.ecommerce.review_rating()": 2927314.7302372037, - "scalar.ecommerce.sku()": 531146.424970572, - "scalar.ecommerce.tracking_number()": 1201446.5515438062, - "scalar.file.file_name()": 1708175.3301213162, - "scalar.file.file_path()": 524760.8388542433, - "scalar.finance.bic()": 1231557.4257592822, - "scalar.finance.bitcoin_address()": 345696.59583691927, - "scalar.finance.credit_card_number()": 461586.75055171456, - "scalar.finance.iban()": 629132.616459944, - "scalar.finance.price()": 1293075.5835228642, - "scalar.finance.routing_number()": 596687.1919361842, - "scalar.food.beverage()": 3825554.7094339924, - "scalar.food.cooking_method()": 3435363.5788138597, - "scalar.food.cuisine()": 4163197.3133553914, - "scalar.food.dietary_tag()": 3801703.1547383745, - "scalar.food.dish()": 3785154.6566922306, - "scalar.food.ingredient()": 3853713.0996870752, - "scalar.food.restaurant()": 1947267.987599957, - "scalar.geo.compass_direction()": 3744757.231076647, - "scalar.geo.continent()": 4136333.727146763, - "scalar.geo.geo_coordinate()": 732863.8150522262, - "scalar.geo.geo_hash()": 808035.0974739501, - "scalar.geo.mountain_range()": 3887269.1472882107, - "scalar.geo.ocean()": 3903352.8793285857, - "scalar.geo.river()": 4132231.3478363734, - "scalar.government.drivers_license()": 1070950.4719162358, - "scalar.government.national_id()": 1695317.5056838468, - "scalar.government.passport_number()": 1189909.572001921, - "scalar.government.ssn()": 626072.1497598726, - "scalar.government.tax_id()": 1109804.0033738816, - "scalar.hardware.cpu()": 4132060.798999447, - "scalar.hardware.form_factor()": 3877772.6644559433, - "scalar.hardware.gpu()": 4155930.4354843493, - "scalar.hardware.manufacturer()": 4162157.6324304226, - "scalar.hardware.peripheral()": 3883344.435834817, - "scalar.hardware.ram_size()": 3855495.8972992203, - "scalar.hardware.ram_type()": 3800836.1690854887, - "scalar.hardware.storage()": 3937317.8768060235, - "scalar.internet.email()": 580807.7868593638, - "scalar.internet.ipv4()": 2193992.8406837718, - "scalar.internet.safe_email()": 599024.7880297339, - "scalar.internet.slug()": 1027685.8513427578, - "scalar.internet.tld()": 3856090.587485037, - "scalar.legal.case_number()": 801693.1769362073, - "scalar.legal.court()": 3191828.927070984, - "scalar.legal.judge()": 1817157.5656841884, - "scalar.legal.law_firm()": 1969628.3273873723, - "scalar.legal.legal_term()": 4187253.9564976585, - "scalar.legal.practice_area()": 4260576.983731565, - "scalar.legal.verdict()": 3556314.247593477, - "scalar.llm.agent_name()": 3914813.6409188006, - "scalar.llm.api_key()": 70273.17997839453, - "scalar.llm.chunk_id()": 3057729.9510524543, - "scalar.llm.cost_estimate()": 1069667.4473223062, - "scalar.llm.embedding_model()": 3874617.4144765288, - "scalar.llm.finish_reason()": 3688267.7251059464, - "scalar.llm.harm_label()": 3926187.7445973027, - "scalar.llm.model_name()": 4061903.402567483, - "scalar.llm.moderation_category()": 4046453.351786683, - "scalar.llm.provider_name()": 3843936.163324229, - "scalar.llm.rate_limit_header()": 1317280.0894174692, - "scalar.llm.similarity_score()": 1493362.0061021775, - "scalar.llm.token_count()": 1736141.2614514446, - "scalar.llm.tool_call_id()": 116633.98971518535, - "scalar.llm.tool_name()": 3894384.3058472336, - "scalar.llm.vector_db_name()": 3850448.5995040815, - "scalar.logistics.carrier()": 4113702.7437792104, - "scalar.logistics.container_type()": 3905029.5900301426, - "scalar.logistics.freight_class()": 3797372.177224665, - "scalar.logistics.hs_code()": 843156.1039735021, - "scalar.logistics.package_type()": 3910832.96322792, - "scalar.logistics.shipping_method()": 3862495.2862809775, - "scalar.logistics.tracking_status()": 3825847.4314360833, - "scalar.logistics.warehouse()": 1887255.3820473321, - "scalar.lorem.sentence()": 797479.9619564811, - "scalar.medical.blood_type()": 3728421.6893533524, - "scalar.medical.diagnosis()": 3806333.766345869, - "scalar.medical.dosage()": 1478939.9146557364, - "scalar.medical.drug_name()": 4158176.9948534057, - "scalar.medical.icd10_code()": 844487.6027538606, - "scalar.medical.medical_record_number()": 1862578.9199561998, - "scalar.medical.procedure()": 4121162.224573291, - "scalar.misc.boolean()": 10459157.582106838, - "scalar.misc.uuid4()": 1462373.157229805, - "scalar.misc.uuid7()": 900130.5222249158, - "scalar.music.album()": 1924779.6204664204, - "scalar.music.artist()": 3893171.3761708722, - "scalar.music.duration()": 1048976.716276357, - "scalar.music.genre()": 4189183.5004605944, - "scalar.music.instrument()": 4170663.587246625, - "scalar.music.record_label()": 3897875.6923943697, - "scalar.music.song()": 2063642.7444447288, - "scalar.network.hostname()": 1039252.5774053372, - "scalar.network.http_method()": 4002241.3616856323, - "scalar.network.http_status_code()": 2747177.267296403, - "scalar.network.ipv6()": 1310890.8822755017, - "scalar.network.mac_address()": 1590305.4890876443, - "scalar.network.port()": 2295526.0236600786, - "scalar.network.user_agent()": 3871017.69604826, - "scalar.payment.card_type()": 3900916.7732842113, - "scalar.payment.currency_code()": 4063058.4818103197, - "scalar.payment.cvv()": 1203485.2851787978, - "scalar.payment.expiry_date()": 998621.9019772016, - "scalar.payment.payment_amount()": 1044375.5120016985, - "scalar.payment.payment_method()": 3829656.8980247336, - "scalar.payment.transaction_id()": 1630071.5830796978, - "scalar.person.female_first_name()": 3742374.784479613, - "scalar.person.first_name()": 3900156.058282487, - "scalar.person.full_name()": 1827017.9411550262, - "scalar.person.male_first_name()": 3966050.6215042565, - "scalar.phone.phone_number()": 516043.8002809739, - "scalar.real_estate.amenity()": 4191114.823563944, - "scalar.real_estate.listing_price()": 1325381.0367573546, - "scalar.real_estate.listing_status()": 4034861.1804600004, - "scalar.real_estate.neighborhood()": 4201151.178964974, - "scalar.real_estate.property_type()": 4210703.745324503, - "scalar.real_estate.square_footage()": 1521815.199559503, - "scalar.science.chemical_element()": 4096346.122995851, - "scalar.science.constellation()": 4015419.23002184, - "scalar.science.element_symbol()": 4117429.105623358, - "scalar.science.metric_prefix()": 3686092.3030287893, - "scalar.science.planet()": 3574875.7781552533, - "scalar.science.si_unit()": 4070666.8366976776, - "scalar.social_media.follower_count()": 1243641.8819789346, - "scalar.social_media.hashtag()": 3282455.2432482173, - "scalar.social_media.platform()": 3908998.45645718, - "scalar.social_media.post_type()": 4195686.855775218, - "scalar.social_media.reaction()": 3908082.026125295, - "scalar.social_media.username()": 1122410.0425600484, - "scalar.sports.athlete()": 1929831.3357255186, - "scalar.sports.league()": 4109814.2067550835, - "scalar.sports.position()": 4107450.8683690643, - "scalar.sports.score()": 1229588.8263735785, - "scalar.sports.sport()": 4180601.9139223574, - "scalar.sports.team()": 3931899.617243365, - "scalar.sports.venue()": 4176062.6808931963, - "scalar.text.buzzword()": 3938558.4747878066, - "scalar.text.headline()": 1817025.5302492105, - "scalar.text.paragraph()": 114376.56200759616, - "scalar.text.quote()": 1825283.8570687736, - "scalar.text.text_block()": 31599.73001294105, - "scalar.weather.alert()": 3828923.719235322, - "scalar.weather.condition()": 4158177.1961405817, - "scalar.weather.humidity()": 2387660.574036887, - "scalar.weather.temperature()": 1932255.1129737883, - "scalar.weather.wind_direction()": 3762085.723213932, - "scalar.weather.wind_speed()": 2268036.597253833, - "schema.generate.100": 230733.71171443167, - "schema.generate.10000": 397098.0074838613, - "schema.generate.100000": 387539.36902118975, - "schema.stream.100000": 399603.11432811985, - "schema.stream_csv.10000": 339581.63524421526, - "schema.stream_csv.100000": 344745.79812474677, - "schema.stream_jsonl.10000": 201985.11000988807, - "schema.stream_jsonl.100000": 203265.50094452957, - "schema.to_csv.10000": 217978.8998320177, - "schema.to_csv.100000": 217740.39898490772, - "startup.init_plus_first_field_us": 44.296199921518564, - "startup.init_us": 4.310999996960163 -} \ No newline at end of file diff --git a/release-please-config.json b/release-please-config.json index 079b7aa..9c305a0 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,11 +1,16 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", - "release-type": "python", - "include-v-in-tag": false, - "changelog-path": "CHANGELOG.md", - "bump-minor-pre-major": true, - "bump-patch-for-minor-pre-major": false, - "extra-files": [ - "src/dataforge/__init__.py" - ] + "packages": { + ".": { + "release-type": "python", + "include-v-in-tag": false, + "include-component-in-tag": false, + "changelog-path": "CHANGELOG.md", + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, + "extra-files": [ + "src/dataforge/__init__.py" + ] + } + } } diff --git a/uv.lock b/uv.lock index a77d6c1..fb35328 100644 --- a/uv.lock +++ b/uv.lock @@ -13,7 +13,7 @@ wheels = [ [[package]] name = "dataforge-py" -version = "0.2.0" +version = "0.3.0" source = { editable = "." } [package.dev-dependencies]