No project description provided
Project description
vexp-sdk (Python)
Thin client for the vexp SDK — a self-hosted, machine-to-machine code-intelligence engine. It gives your agents, PR bots, and pipelines type-accurate context and cross-repo blast-radius over hundreds of repositories, on your own infrastructure. Your code never leaves your network.
This package is only the client. It talks to a vexp gateway you run yourself (see the docs); it needs the gateway's URL and a bearer token. It is dependency-free (standard library only), so it installs and runs anywhere, including air-gapped CI.
Install
pip install vexp-sdk
Quickstart
from vexp_sdk import VexpClient
vx = VexpClient("https://vexp.your-company.internal", token="...")
# Context + impact for a task
res = vx.run_pipeline("why does checkout fail", repos=["payments-gateway"])
for p in res["pivots"]:
print(p["repo"], p["file_path"], p["score"])
# Cross-repo blast-radius of a symbol
impact = vx.impact_graph("payments.Checkout.create_session")
# Drive a re-index after a deploy
vx.index_incremental(repo="payments-gateway", mode="incremental")
API
VexpClient(base_url: str, token: str | None = None, timeout: float = 60.0)
health() -> dict # gateway liveness + shard count
run_pipeline(task: str, **kwargs) -> dict # context + impact + memory
context_capsule(query: str, **kwargs) -> dict # retrieval only
impact_graph(symbol_fqn: str, **kwargs) -> dict # cross-repo blast-radius
index_incremental(repo=None, files=None, mode="incremental") -> dict
index_status() -> dict
call(tool: str, **params) # generic tool call
run_pipeline returns a dict with pivots (ranked code locations) and an optional
compressed output. Non-2xx responses raise VexpError.
Requirements
- A running vexp gateway (self-hosted) reachable at
base_url. - A bearer token for the gateway, and a capacity
license.jwtmounted in the gateway (issued with your plan).
Full deployment and API reference: https://vexp.dev/docs/sdk
License
Proprietary. The client is free to install and use against a licensed gateway; the engine itself is license-gated. See https://vexp.dev/sdk.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vexp_sdk-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.
File metadata
- Download URL: vexp_sdk-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Upload date:
- Size: 252.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac0444e2835b341c0a7e60637a7ef6878ce9f65af6c5a5681acd6faa753f6008
|
|
| MD5 |
b89afbdae30eb18a0b92949ba469b9ea
|
|
| BLAKE2b-256 |
5173e9713f0a30da449424ab774de935d37a39f2f6ba9f09ceb3d50b38263a67
|