Skip to content

imclerran/roc-openrouter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Roc package for the OpenRouter.ai API

Roc-Lang

This package is still in WIP 🛠️ stages, so the interface may be subject to change. With that said, the package currently supports:

  • Creating and parsing ChatML style requests and responses.
  • Creating and parsing raw prompt style requests and responses.
  • Formatting prompt strings with [INST], <<SYS>>, and <s> tags for models with llama style fine-tuning.
  • Easy access to over 140 up-to-date models, plus additional older models.
  • Most common LLM parameters such as temperature, topP, topK, repetitionPenalty, etc.
  • OpenRouter specific features like fallback models and provider preferences.

Coming (maybe not so) soon 🚀

Example

import cli.Stdout
import cli.Http
import cli.Task
import ai.Chat

main =
    apiKey = "<your_api_key>"
    client = Chat.initClient { apiKey, model: "openai/gpt-4o" }
    messages = Chat.appendUserMessage [] "Hello, world!"
    response = Http.send! (Chat.buildRequest client messages)
    when Chat.decodeTopMessageChoice response.body is
        Ok message -> Stdout.line message.content
        Err (HttpError err) -> Stdout.line "$(Num.toStr err.code): $(err.message)"
        Err _ -> Stdout.line "Error decoding API response"

For complete example apps, including a full chatbot app, see the examples folder.