Download Latest Version spiced.exe_models_cuda_90_windows_x86_64.tar.gz (731.3 MB)
Email in envelope

Get an email when there's a new version of Spice.ai OSS

Home / v1.5.2
Name Modified Size InfoDownloads / Week
Parent folder
spiced_models_cuda_90_linux_x86_64.tar.gz 2025-08-12 313.2 MB
spiced_models_cuda_89_linux_x86_64.tar.gz 2025-08-12 311.2 MB
spiced_models_cuda_87_linux_x86_64.tar.gz 2025-08-12 316.6 MB
spiced_models_cuda_86_linux_x86_64.tar.gz 2025-08-12 316.3 MB
spiced_models_cuda_80_linux_x86_64.tar.gz 2025-08-12 317.3 MB
spiced.exe_models_cuda_90_windows_x86_64.tar.gz 2025-08-12 731.3 MB
spiced.exe_models_cuda_89_windows_x86_64.tar.gz 2025-08-12 729.5 MB
spiced.exe_models_cuda_87_windows_x86_64.tar.gz 2025-08-12 730.4 MB
spiced.exe_models_cuda_86_windows_x86_64.tar.gz 2025-08-12 730.0 MB
spiced.exe_models_cuda_80_windows_x86_64.tar.gz 2025-08-12 731.1 MB
spiced_models_metal_darwin_aarch64.tar.gz 2025-08-12 124.5 MB
spiced_models_darwin_aarch64.tar.gz 2025-08-12 116.4 MB
spiced_darwin_aarch64.tar.gz 2025-08-12 109.8 MB
spice_darwin_aarch64.tar.gz 2025-08-12 9.2 MB
spiced.exe_windows_x86_64.tar.gz 2025-08-12 100.6 MB
spiced_models_linux_aarch64.tar.gz 2025-08-12 128.4 MB
spiced.exe_models_windows_x86_64.tar.gz 2025-08-12 107.0 MB
spice.exe_windows_x86_64.tar.gz 2025-08-12 10.1 MB
spiced_linux_aarch64.tar.gz 2025-08-12 121.3 MB
spice_linux_aarch64.tar.gz 2025-08-12 9.2 MB
spiced_models_linux_x86_64.tar.gz 2025-08-12 133.6 MB
spiced_linux_x86_64.tar.gz 2025-08-12 125.6 MB
spice_linux_x86_64.tar.gz 2025-08-12 9.9 MB
README.md 2025-08-11 8.6 kB
v1.5.2 source code.tar.gz 2025-08-11 18.1 MB
v1.5.2 source code.zip 2025-08-11 26.7 MB
Totals: 26 Items   6.4 GB 4

Spice v1.5.2 (Aug 4, 2025)

Spice v1.5.2 introduces a new Amazon Bedrock Models Provider for converse API (Nova) compatible models, AWS Redshift support using the Postgres data connector, and Hadoop Catalog Support for Iceberg tables along with several bug fixes and improvements.

What's New in v1.5.2

Amazon Bedrock Models Provider: Adds a new Amazon Bedrock LLM Provider. Models compatible with the Converse API (Nova) are supported.

Amazon Bedrock provides access to a range of foundation models for generative AI. Spice supports using Bedrock-hosted models by specifying the bedrock prefix in the from field and configuring the required parameters.

Supported Model IDs:

  • us.amazon.nova-lite-v1:0
  • us.amazon.nova-micro-v1:0
  • us.amazon.nova-premier-v1:0
  • us.amazon.nova-pro-v1:0

Refer to the Amazon Bedrock documentation for details on available models.

Example Spicepod.yaml:

:::yaml
models:
  - from: bedrock:us.amazon.nova-lite-v1:0
    name: novash
    params:
      aws_region: us-east-1
      aws_access_key_id: ${ secrets:AWS_ACCESS_KEY_ID }
      aws_secret_access_key: ${ secrets:AWS_SECRET_ACCESS_KEY }
      bedrock_guardrail_identifier: arn:aws:bedrock:abcdefg012927:0123456789876:guardrail/hello
      bedrock_guardrail_version: DRAFT
      bedrock_trace: enabled
      bedrock_temperature: 42

For more information, see the Amazon Bedrock Documentation.

AWS Redshift Support for Postgres Data Connector: Spice now supports connecting to Amazon Redshift using the PostgreSQL data connector. Redshift is a columnar OLAP database compatible with PostgreSQL, allowing you to use the same connector and configuration parameters.

To connect to Redshift, use the format postgres:schema.table in your Spicepod and set the connection parameters to match your Redshift cluster settings.

Example Spicepod.yaml:

:::yaml
# Example datasets for Redshift TPCH tables
datasets:
  - from: postgres:public.customer
    name: customer
    params:
      pg_host: ${secrets:PG_HOST}
      pg_port: 5439
      pg_sslmode: prefer
      pg_db: dev
      pg_user: ${secrets:PG_USER}
      pg_pass: ${secrets:PG_PASS}
  - from: postgres:public.lineitem
    name: lineitem
    params:
      pg_host: ${secrets:PG_HOST}
      pg_port: 5439
      pg_sslmode: prefer
      pg_db: dev
      pg_user: ${secrets:PG_USER}
      pg_pass: ${secrets:PG_PASS}

Redshift types are mapped to PostgreSQL types. See the PostgreSQL connector documentation for details on supported types and configuration.

Hadoop Catalog Support for Iceberg: The Iceberg Data and Catalog connectors now support connecting to Hadoop catalogs on local filesystem (file://) or S3 object storage (s3://, s3a://). This enables connecting to Iceberg catalogs without a separate catalog provider service.

Example Spicepod.yaml:

:::yaml
catalogs:
  - from: iceberg:file:///tmp/hadoop_warehouse/
    name: local_hadoop
  - from: iceberg:s3://my-bucket/hadoop_warehouse/
    name: s3_hadoop

  # Example datasets
  - from: iceberg:file:///data/hadoop_warehouse/test/my_table_1
    name: local_hadoop
  - from: iceberg:s3://my-bucket/hadoop_warehouse/test/my_table_2
    name: s3_hadoop

For more details, see the Iceberg Data Connector documentation and the Iceberg Catalog Connector documentation.

Contributors

Breaking Changes

  • N/A

Cookbook Updates

The Spice Cookbook includes 75 recipes to help you get started with Spice quickly and easily.

Upgrading

To upgrade to v1.5.2, use one of the following methods:

CLI:

:::console
spice upgrade

Homebrew:

:::console
brew upgrade spiceai/spiceai/spice

Docker:

Pull the spiceai/spiceai:1.5.2 image:

:::console
docker pull spiceai/spiceai:1.5.2

For available tags, see DockerHub.

Helm:

:::console
helm repo update
helm upgrade spiceai spiceai/spiceai

AWS Marketplace:

🎉 Spice is also now available in the AWS Marketplace!

What's Changed

Dependencies

No major dependency updates.

Changelog

  • fixes for databricks OpenAI compatibility (#6629) by @Jeadie in #6629
  • Update spicepod.schema.json (#6632) by @app/github-actions in #6632
  • Remove 'stream_options' from databricks LLMs (#6637) by @Jeadie in #6637
  • Move retry and rate limiting logic for Amazon bedrock out of embeddings. (#6626) by @Jeadie in #6626
  • Disable Metal precomplation in integration_llms.yml (#6649) by @Jeadie in #6649
  • fix: Hadoop integration test (#6660) by @peasee in #6660
  • feat: Add Hadoop Catalog Data Component (#6658) by @peasee in #6658
  • update datafusion-table-providers to latest spiceai tag (#6661) by @mach-kernel in #6661
  • feat: Add Hadoop Catalog connectors for Iceberg (#6659) by @peasee in #6659
  • Make FullTextSearchExec robust to RecordBatch column ordering. (#6675) by @Jeadie in #6675
  • Make 'runtime-object-store' crate (#6674) by @Jeadie in #6674
  • fix: Support include for Iceberg (#6663) by @peasee in #6663
  • feat: Add Hadoop TPCH benchmark (#6678) by @peasee in #6678
  • feat: Add Hadoop metadata_path parameter (#6680) by @peasee in #6680
  • fix: Automatically infer Hadoop warehouse scheme (#6681) by @peasee in #6681
  • Amazon Bedrock, specifically Nova models (#6673) by @Jeadie in [#6673](https://github.com/spiceai/spiceai/pull/6673
  • fix perplexity_auth_token parameters for web_search (#6685) by @Jeadie in #6685
  • Fix AWS Auth issue (#6699) by @Advayp in #6699
  • Limit Concurrent Requests for GitHub (#6672) by @Advayp in #6672
  • Add runtime parameter to enable more permissive parquet reading when page indexes are missing (#6716) by @phillipleblanc in #6716
  • Improve Flight REPL error messages (#6696) by @lukekim in #6696
  • Fixes from search tests (#6710) by @Jeadie in #6710
Source: README.md, updated 2025-08-11