Skip to main content

Seltz Python SDK for AI-powered search

Project description

PyPI version

Seltz Python SDK

Official Python SDK for Seltz, the Web search engine for AI agents.

💾 Installation

pip install seltz

Requires Python 3.9 or higher.

⚡️ Quick Start

from seltz import Seltz

client = Seltz(api_key="your-api-key")

# Search the Web
response = client.search("best ai search engines", max_results=10)

# Access results
for document in response.documents:
    print(f"URL: {document.url}")
    print(f"Content: {document.content}")

Output:

URL: https://www.best-ai-search-engines.com
Content: Generative AI can make finding information faster and more intuitive.
If you’re tired of traditional search, explore some of the best AI-powered
search engines we've tested...

Answer

Get a natural-language answer grounded in Web search results, with citations:

from seltz import Seltz

client = Seltz(api_key="your-api-key")

response = client.answer("Who is Apple's next CEO?")

print(response.answer)
for citation in response.citations:
    print(f"Source: {citation.url}")

Async

The same API is available asynchronously via AsyncSeltzawait each call:

import asyncio

from seltz import AsyncSeltz


async def main():
    client = AsyncSeltz(api_key="your-api-key")

    response = await client.search("best ai search engines", max_results=10)

    for document in response.documents:
        print(f"URL: {document.url}")
        print(f"Content: {document.content}")


asyncio.run(main())

To close the connection deterministically rather than leaving it to garbage collection, use AsyncSeltz as an async context manager (async with) or call await client.close() when done.

📚 Documentation

Browse the documentation for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

seltz-1.4.0.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

seltz-1.4.0-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

Details for the file seltz-1.4.0.tar.gz.

File metadata

  • Download URL: seltz-1.4.0.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for seltz-1.4.0.tar.gz
Algorithm Hash digest
SHA256 9c7b27e9c0acdde1cd11c0b6de57876a67bac3cb4509105ddd67703cc696387c
MD5 06c817d1db69cff2d5658946a31cb15b
BLAKE2b-256 11ff1cddb7ed172e4b1b1ec3d04c6aad206ffccc67eb849260d052da49da1868

See more details on using hashes here.

Provenance

The following attestation bundles were made for seltz-1.4.0.tar.gz:

Publisher: python-publish.yml on seltz-ai/seltz-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seltz-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: seltz-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for seltz-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a046582c3319b41da0162a59dbaafbb0137559c0efbaa4f49b086ce9ed87cd9f
MD5 18b10823a7712991a795fcaf16aef3f8
BLAKE2b-256 1759858a50d44dcd614e81c035a82c9a130167c3071bc2271e98d7c381d4180e

See more details on using hashes here.

Provenance

The following attestation bundles were made for seltz-1.4.0-py3-none-any.whl:

Publisher: python-publish.yml on seltz-ai/seltz-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page