Thanks to visit codestin.com
Credit goes to github.com

Skip to content

The python client library to the NOSIBLE Search API

License

NosibleAI/nosible-py

Repository files navigation

Linux Tests Windows Tests macOS Tests Read the Docs PyPI version codecov PyPI - Python Versions

Logo

NOSIBLE Search Client

A high-level Python client for the NOSIBLE Search API. Easily integrate the Nosible Search API into your Python projects.

📄 Documentation

You can find the full NOSIBLE Search Client documentation here.

📦 Installation

pip install nosible

⚡ Installing with uv

uv pip install nosible

Requirements:

  • Python 3.9+
  • polars
  • duckdb
  • openai
  • tantivy
  • pyrate-limiter
  • tenacity
  • cryptography
  • pyarrow
  • pandas

🔑 Authentication

  1. Sign in to NOSIBLE.AI and grab your free API key.
  2. Set it as an environment variable or pass directly:

On Windows

$Env:NOSIBLE_API_KEY="basic|abcd1234..."
$Env:LLM_API_KEY="sk-..."  # for query expansions (optional)

On Linux

export NOSIBLE_API_KEY="basic|abcd1234..."
export LLM_API_KEY="sk-..."  # for query expansions (optional)

Or in code:

  • As an argument:
from nosible import Nosible

client = Nosible(
    nosible_api_key="basic|abcd1234...",
    llm_api_key="sk-...",
)
  • As an environment variable:
from nosible import Nosible
import os

os.environ["NOSIBLE_API_KEY"] = "basic|abcd1234..."
os.environ["LLM_API_KEY"] = "sk-..."

🔍 Your first search

To complete your first search:

from nosible import Nosible

with Nosible(nosible_api_key="YOUR API KEY") as client:

    results = client.fast_search(
        question="What is Artificial General Intelligence?"
    )

    print(results)

🤖 Cybernaut 1

An AI agent with unrestricted access to everything in NOSIBLE including every shard, algorithm, selector, reranker, and signal. It knows what these things are and can tune them on the fly to find better results.

from nosible import Nosible

with Nosible(nosible_api_key="YOUR API KEY") as client:

    results = client.search(
        # search() gives you access to Cybernaut 1
        question="Find me interesting technical blogs about Monte Carlo Tree Search."
    )

    print(results)

📄 Documentation

You can find the full NOSIBLE Search Client documentation here.

📡 Swagger Docs

You can find online endpoints to the NOSIBLE Search API Swagger Docs here.


© 2025 Nosible Inc. | Privacy Policy | Terms

About

The python client library to the NOSIBLE Search API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages