1 Getting Started
1.1 Installation
1.1.1 R-universe
install.packages(
"rtemis.llm",
repos = c('https://rtemis-org.r-universe.dev', 'https://cloud.r-project.org')
)1.1.2 GitHub
pak::pak("rtemis-org/rtemis.llm")1.2 Overview
rtemis.llm defines an LLM and an Agent class, with methods to generate single responses, or to batch generate responses to multiple prompts.
| Feature | LLM |
Agent |
|---|---|---|
| reasoning | ✓ | ✓ |
| structured output | ✓ | ✓ |
| tool use | x | ✓ |
| memory management | x | ✓ |
| batch generation | ✓ | ✓ |