Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heurekalabsco/axolotr
The axolotr package provides a unified interface for interacting with various Language Model APIs, including OpenAI's GPT, Google's Gemini, Anthropic's Claude, and Groq's API. It allows users to easily switch between different LLMs and leverage their capabilities for a wide range of natural language processing tasks.
https://github.com/heurekalabsco/axolotr
Last synced: about 1 month ago
JSON representation
The axolotr package provides a unified interface for interacting with various Language Model APIs, including OpenAI's GPT, Google's Gemini, Anthropic's Claude, and Groq's API. It allows users to easily switch between different LLMs and leverage their capabilities for a wide range of natural language processing tasks.
- Host: GitHub
- URL: https://github.com/heurekalabsco/axolotr
- Owner: heurekalabsco
- License: other
- Created: 2024-07-28T00:24:28.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T17:35:51.000Z (about 2 months ago)
- Last Synced: 2024-10-20T21:19:29.950Z (about 2 months ago)
- Language: R
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - heurekalabsco/axolotr - The axolotr package provides a unified interface for interacting with various Language Model APIs, including OpenAI's GPT, Google's Gemini, Anthropic's Claude, and Groq's API. It allows users to easil (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# axolotr
The goal of axolotr is to provide a unified interface for interacting with various Language Model APIs, including OpenAI's GPT, Google's Gemini, Anthropic's Claude, and Groq's API. This package allows users to easily switch between different LLMs and leverage their capabilities for a wide range of natural language processing tasks.
## Installation
You can install the development version of axolotr from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("heurekalabsco/axolotr")
```## Setup
Before using axolotr, you need to set up your API keys. You can do this by adding them to your `.Renviron` file:
```r
library(axolotr)create_credentials(
OPENAI_API_KEY = "your_openai_key",
GOOGLE_GEMINI_API_KEY = "your_google_key",
ANTHROPIC_API_KEY = "your_anthropic_key",
GROQ_API_KEY = "your_groq_key"
)
```Remember to restart your R session after setting up the credentials.
## Usage
Here are some examples of how to use `axolotr`:
```{r example, eval=FALSE}
library(axolotr)# Using OpenAI's GPT model
gpt_response <- axolotr::ask(
prompt = "What are the main differences between R and Python?",
model = "gpt"
)# Using Google's Gemini model
gemini_response <- axolotr::ask(
prompt = "Explain the concept of machine learning in simple terms.",
model = "gemini"
)# Using Anthropic's Claude model
claude_response <- axolotr::ask(
prompt = "Summarize the key points of the theory of relativity.",
model = "sonnet"
)# Using Groq's API with a specific model
groq_response <- axolotr::ask(
prompt = "What are the potential applications of quantum computing?",
model = "mixtral-8x7b-32768"
)
```## Additional Arguments
Pass additional arguments, such as the common pre_fill argument for Claude models, to the `ask` function:
```{r, eval=FALSE}
> ask(
prompt = "Continue this sentence: The quick brown fox",
model = "claude",
temperature = 0.7)
[1] "The quick brown fox jumped over the lazy dog."> ask(
prompt = "Continue this sentence: The quick brown fox",
model = "claude",
pre_fill = "jumps over",
temperature = 0.7)
[1] " the lazy dog."
```## Features
- Unified interface for multiple LLM APIs
- Flexible model selection (generic or specific model names)
- Easy setup of API credentials
- Customizable parameters for each API call## TODO
- ... isn't set up yet. Add ability to pass addiitonal model-specific parameters to the API calls.
- Make cute axolotl hex sticker## Contributing
Contributions to axolotr are welcome!
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.