Metadata-Version: 2.4
Name: notte-llm
Version: 1.8.7
Summary: LLM integration for Notte
Author-email: Notte Team  <hello@notte.cc>
Requires-Python: >=3.11
Requires-Dist: chevron>=0.14.0
Requires-Dist: json-repair>=0.57.1
Requires-Dist: litellm>=1.74.12
Requires-Dist: llamux>=0.1.9
Requires-Dist: loguru>=0.7.3
Requires-Dist: notte-core==v1.8.7
Requires-Dist: openai<1.100.0
Requires-Dist: pydantic>=2.10.6
Requires-Dist: python-dotenv>=1.0.1
Requires-Dist: tiktoken>=0.8.0
Description-Content-Type: text/markdown

# notte-llm

LLM integration for Notte, providing LiteLLM-based services for language model interactions.

This package contains:
- LLM engine and service implementations
- Prompt management and templating
- LLM usage tracing and logging
- Structured output support

## Installation

```bash
pip install notte-llm
```

## Usage

```python
from notte_llm.engine import LLMEngine
from notte_llm.service import LLMService

# Create an LLM engine
engine = LLMEngine(model="gpt-4o-mini")

# Create an LLM service
service = LLMService()
```


