Skip to content

Development

This guide will help you set up your development environment and get started with RLLM development.

Prerequisites

  • Xcode 15.0+
  • iOS 17.0+
  • Swift 5.0+

Dependencies

RLLM uses the following major dependencies:

Getting Started

  1. Clone the repository
bash
git clone https://github.com/DanielZhangyc/RLLM.git
cd RLLM
  1. Open the project in Xcode
bash
open RLLM.xcodeproj
  1. Build and run the project in Xcode

API Keys

RLLM requires API keys for the following services:

  • Anthropic Claude
  • Deepseek
  • OpenAI

You can configure these API keys in the app settings. For development, you can add them directly in the code:

  1. Open Sources/App/Config.swift
  2. Add your API keys to the appropriate constants

Note

Never commit your API keys to version control. Make sure to keep them secure and private.

Released under the MIT License.