KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
llm-reka
★ 12
Open GitHub ↗
Access Reka models via the Reka API
Download README (.md)
Explore Similar Repositories
hibiscus
:
Simple plaintext diary
opendiary
:
No description available.
cs2-lib-inspect
:
A TypeScript extension for cs2-lib that generates Counter-Strike 2 inspect links
JSON0
:
Java object creation should be the most expensive operation. What need to do is minimize this cost.
swift-picosystem-example
:
An example project using Embedded Swift on a Pimoroni PicoSystem
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
llm-reka
?
Download (.md)
# llm-reka [](https://pypi.org/project/llm-reka/) [](https://github.com/simonw/llm-reka/releases) [](https://github.com/simonw/llm-reka/actions/workflows/test.yml) [](https://github.com/simonw/llm-reka/blob/main/LICENSE) Access [Reka](https://www.reka.ai/) models via the Reka API ## Installation Install this plugin in the same environment as [LLM](https://llm.datasette.io/). ```bash llm install llm-reka ``` ## Usage Get [a Reka API key](https://platform.reka.ai/apikeys) and configure it like this: ```bash llm keys set reka # Paste in the API key ``` Use `llm -m reka-flash "prompt"` to run prompts against `reka-flash`. The other models supported are `reka-core` and `reka-edge`. Core is the most expensive, then Flash, then Edge is cheapest. [Pricing here](https://www.reka.ai/reka-api). ## Development To set up this plugin locally, first checkout the code. Then create a new virtual environment: ```bash cd llm-reka python3 -m venv venv source venv/bin/activate ``` Now install the dependencies and test dependencies: ```bash llm install -e '.[test]' ``` To run the tests: ```bash pytest ```