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
26 changes: 3 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

> OpenTelemetry extension for LLM observability: track conversations, workflows, and costs

[![PyPI version](https://img.shields.io/pypi/v/last9-genai.svg)](https://pypi.org/project/last9-genai/)
[![PyPI downloads](https://img.shields.io/pypi/dm/last9-genai.svg)](https://pypi.org/project/last9-genai/)
[![Python 3.10+](https://img.shields.io/pypi/pyversions/last9-genai.svg)](https://pypi.org/project/last9-genai/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)

## Overview

Expand Down Expand Up @@ -56,8 +58,6 @@ See [Working with OTel Auto-Instrumentation](#working-with-otel-auto-instrumenta

## Installation

### From PyPI (Coming Soon)

**Basic:**
```bash
pip install last9-genai
Expand All @@ -68,26 +68,6 @@ pip install last9-genai
pip install last9-genai[otlp]
```

### From GitHub (Available Now)

Install the latest version directly from GitHub:

```bash
# Basic installation
pip install git+https://github.com/last9/python-ai-sdk.git

# With OTLP export
pip install "last9-genai[otlp] @ git+https://github.com/last9/python-ai-sdk.git"

# Install specific version (using tags)
pip install git+https://github.com/last9/python-ai-sdk.git@v1.0.0
```

**Add to requirements.txt:**
```txt
last9-genai @ git+https://github.com/last9/python-ai-sdk.git@v1.0.0
```

**Requirements:**
- Python 3.10+
- `opentelemetry-api>=1.20.0`
Expand Down
Empty file added last9_genai/py.typed
Empty file.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "last9-genai"
version = "1.0.0"
description = "Last9 observability attributes for OpenTelemetry GenAI spans - track costs, workflows, and conversations in LLM applications"
readme = "README.md"
license = {text = "MIT"}
license = "MIT"
authors = [
{name = "Last9 Inc.", email = "hello@last9.io"}
]
Expand All @@ -31,7 +31,6 @@ keywords = [
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
Expand Down
23 changes: 0 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,5 @@
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.10",
install_requires=[
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
],
extras_require={
"otlp": [
"opentelemetry-exporter-otlp-proto-grpc>=1.20.0",
],
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"mypy>=1.0.0",
"pylint>=2.17.0",
],
"examples": [
"anthropic>=0.3.0",
"openai>=1.0.0",
"langchain>=0.1.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
],
},
keywords="opentelemetry genai llm observability last9 anthropic openai langchain ai monitoring cost-tracking",
)