Skip to main content

Official Python SDK for the Larkup API

Project description

Larkup Python SDK

The official Python client for the Larkup platform.

This SDK provides a simple, Pythonic interface to interact with your running Larkup servers. It offers both synchronous and asynchronous clients, built on top of httpx and pydantic.

Installation

Install the package via pip or uv:

pip install larkup
# or
uv pip install larkup

Quick Start

Synchronous Client

from larkup import LarkupClient

# Initialize the client
client = LarkupClient(base_url="http://localhost:4567")

# 1. Query the RAG Pipeline
response = client.query(
    query="What is Larkup?",
    top_k=5
)
for hit in response.hits:
    print(hit.document.content)

# 2. Add Documents to the Pipeline
client.documents.add(
    content="Larkup is building a new learning system for the AI Era.",
    metadata={"source": "manual-entry"}
)

# 3. Trigger Indexing
client.index()
print("Documents indexed successfully.")

Asynchronous Client

import asyncio
from larkup import AsyncLarkupClient

async def main():
    client = AsyncLarkupClient(base_url="http://localhost:4567")
    
    response = await client.query(
        query="What is the future of education?",
        top_k=3
    )
    print(response.hits)

asyncio.run(main())

Features

  • Sync & Async Support: Use LarkupClient or AsyncLarkupClient.
  • Querying: Execute semantic searches against your vector store.
  • Data Ingestion: Add documents and web pages programmatically.
  • Strong Typing: Built with Pydantic for validation and editor autocompletion.

Documentation

For full API reference and advanced usage, visit the Larkup Documentation.

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

larkup-0.1.20.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

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

larkup-0.1.20-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file larkup-0.1.20.tar.gz.

File metadata

  • Download URL: larkup-0.1.20.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for larkup-0.1.20.tar.gz
Algorithm Hash digest
SHA256 75b6f121ee4eef1f12c4ba4fd7a3b4d4b56b3ef5ede7bb51f3d65c9d6305f1d8
MD5 56e7b53e2a8e408eadab76ad3d05435d
BLAKE2b-256 5a69476dfb878e9a97358a2ada8838accddac0713672938759bee2b4a8485cbf

See more details on using hashes here.

File details

Details for the file larkup-0.1.20-py3-none-any.whl.

File metadata

  • Download URL: larkup-0.1.20-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for larkup-0.1.20-py3-none-any.whl
Algorithm Hash digest
SHA256 517ac8dce66fc5ca2f8ce757be400fa313a65cdf427a9ad7d57e8c59e9821f4a
MD5 c4ac178600c730b715a55f60ef83d5a1
BLAKE2b-256 f66d7d923e10bb6894c4c2eb5b290c1e1b5a83e3d70155153bffcf5c336f033f

See more details on using hashes here.

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