Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# le-agent-sdk

[![PyPI version](https://img.shields.io/pypi/v/le-agent-sdk.svg)](https://pypi.org/project/le-agent-sdk/)
[![Tests](https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python/actions/workflows/test.yml/badge.svg)](https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python/actions/workflows/test.yml)
[![Python 3.9+](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://pypi.org/project/le-agent-sdk/)
[![Tests](https://github.com/refined-element/le-agent-sdk-python/actions/workflows/test.yml/badge.svg)](https://github.com/refined-element/le-agent-sdk-python/actions/workflows/test.yml)
[![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://pypi.org/project/le-agent-sdk/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Python SDK for Lightning Enable Agent Service Agreements.
Expand Down Expand Up @@ -110,7 +110,7 @@ asyncio.run(main())

| Class | Description |
|-------|-------------|
| `L402Client` | HTTP client with automatic L402 challenge-response handling. Wraps [l402-requests](https://github.com/ArcadeLabsInc/l402-requests). |
| `L402Client` | HTTP client with automatic L402 challenge-response handling. Wraps [l402-requests](https://github.com/refined-element/l402-requests). |
| `AgentPricing` | Pricing model (amount, unit, per-request/per-token). |

## Protocol
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "le-agent-sdk"
version = "0.3.0"
version = "0.3.1"
description = "Python SDK for Lightning Enable Agent Service Agreements"
requires-python = ">=3.10"
license = "MIT"
Comment thread
refined-element marked this conversation as resolved.
Expand All @@ -18,7 +18,6 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -39,8 +38,8 @@ dev = [

[project.urls]
Homepage = "https://lightningenable.com"
Repository = "https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python"
Issues = "https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python/issues"
Repository = "https://github.com/refined-element/le-agent-sdk-python"
Issues = "https://github.com/refined-element/le-agent-sdk-python/issues"

[tool.pytest.ini_options]
asyncio_mode = "auto"
Expand Down
Loading