Metadata-Version: 2.3
Name: lmtr-agents
Version: 0.1.0a0
Summary: Various llm agents (agent_chat, agent_tr, agent_ref, agent_imp, agent_comb) for translation
Author: ffreemt
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: langchain-openai>=0.1.17
Requires-Dist: langchain>=0.2.10
Requires-Dist: loguru>=0.7.2
Requires-Dist: python-dotenv>=1.0.1
Requires-Dist: rich>=13.7.1
Requires-Dist: typer>=0.12.1
Requires-Dist: ycecream>=1.3.17
Description-Content-Type: text/markdown

# lmtr-agents
[![pytest](https://github.com/ffreemt/lmtr-agents/actions/workflows/routine-tests.yml/badge.svg)](https://github.com/ffreemt/lmtr-agents/actions)[![python](https://img.shields.io/static/v1?label=python+&message=3.8%2B&color=blue)](https://www.python.org/downloads/)[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)[![PyPI version](https://badge.fury.io/py/lmtr-agents.svg)](https://badge.fury.io/py/lmtr-agents)

Various llm agents (agent_chat, agent_tr, agent_ref, agent_imp, agent_comb) for translation

## Intro
Heavily based on the templates of Andrew Ng's translation agent, intended for use in https://llmtool.dattw.eu.org 's last boxes.

## Install it

```shell
pip install lmtr-agents

```

## Use it
Example `.env`
```
LM_MODEL=gpt-4o-mini,https://openrouter.ai/api/v1,sk-or-v1-...
```

```python
from lmtr_agents import agent_chat, agent_tr, agent_ref, agent_imp, agent_comb
```