메뉴로 바로가기

Getting Started

GitHub

Capgo의 AI-Assisted Setup을 사용하여 플러그인을 설치할 수 있습니다. AI 도구에 Capgo 스킬을 추가하려면 다음 명령어를 사용하세요.

터미널 창
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins

다음 프롬프트를 사용하세요.

Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-llm` plugin in my project.

만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래에 플랫폼에 따라 설명된 지침을 따르세요.

터미널 창
bun add @capgo/capacitor-llm
bunx cap sync
import { CapgoLLM } from '@capgo/capacitor-llm';

API 개요

API 개요

새로운 채팅 세션을 생성합니다.

import { CapgoLLM } from '@capgo/capacitor-llm';
await CapgoLLM.createChat();

특정 채팅 세션에서 AI에게 메시지를 전송합니다.

import { CapgoLLM } from '@capgo/capacitor-llm';
await CapgoLLM.sendMessage({} as { chatId: string; message: string });

LLM의 준비 상태를 가져옵니다.

import { CapgoLLM } from '@capgo/capacitor-llm';
await CapgoLLM.getReadiness();

setModel

setModel

모델 설정

  • iOS: 시스템 모델을 위한 'Apple Intelligence' 경로를 사용하거나 MediaPipe 모델 경로를 제공하십시오.
  • Android: MediaPipe 모델 파일의 경로 (자산 또는 파일 디렉토리)
import { CapgoLLM } from '@capgo/capacitor-llm';
await CapgoLLM.setModel({} as ModelOptions);

downloadModel

downloadModel

URL에서 모델을 다운로드하고 적절한 위치에 저장합니다.

  • iOS: 앱의 문서 디렉토리에 다운로드
  • Android: 앱의 파일 디렉토리에 다운로드
import { CapgoLLM } from '@capgo/capacitor-llm';
await CapgoLLM.downloadModel({} as DownloadModelOptions);

모델 구성 옵션입니다.

export interface ModelOptions {
/** Model path or "Apple Intelligence" for iOS system model */
path: string;
/** Model file type/extension (e.g., "task", "bin", "litertlm"). If not provided, will be extracted from path. */
modelType?: string;
/** Maximum number of tokens the model handles */
maxTokens?: number;
/** Number of tokens the model considers at each step */
topk?: number;
/** Amount of randomness in generation (0.0-1.0) */
temperature?: number;
/** Random seed for generation */
randomSeed?: number;
}

DownloadModelOptions

DownloadModelOptions 섹션

모델 다운로드를 위한 옵션입니다.

export interface DownloadModelOptions {
/** URL of the model file to download */
url: string;
/** Optional: URL of companion file (e.g., .litertlm for Android) */
companionUrl?: string;
/** Optional: Custom filename (defaults to filename from URL) */
filename?: string;
}

DownloadModelResult

DownloadModelResult 섹션

모델 다운로드 결과입니다.

export interface DownloadModelResult {
/** Path where the model was saved */
path: string;
/** Path where the companion file was saved (if applicable) */
companionPath?: string;
}

TextFromAiEvent

TextFromAiEvent 섹션

AI에서 텍스트를 받은 이벤트 데이터입니다.

export interface TextFromAiEvent {
/** The text content from AI - this is an incremental chunk, not the full text */
text: string;
/** The chat session ID */
chatId: string;
/** Whether this is a complete chunk (true) or partial streaming data (false) */
isChunk?: boolean;
}

AiFinishedEvent

__CAPGO_KEEP_1__

__CAPGO_KEEP_2__

export interface AiFinishedEvent {
/** The chat session ID that finished */
chatId: string;
}

DownloadProgressEvent

__CAPGO_KEEP_1__

__CAPGO_KEEP_3__

export interface DownloadProgressEvent {
/** Percentage of download completed (0-100) */
progress: number;
/** Total bytes to download */
totalBytes?: number;
/** Bytes downloaded so far */
downloadedBytes?: number;
}

ReadinessChangeEvent

__CAPGO_KEEP_1__

__CAPGO_KEEP_4__

export interface ReadinessChangeEvent {
/** The readiness status */
readiness: string;
}

__CAPGO_KEEP_5__

__CAPGO_KEEP_1__

이 페이지는 플러그인의 src/definitions.ts. upstream에서 변경된 경우 pubic API 다시 동기화 하세요.

Getting Started에서 계속

Getting Started에서 계속하기

이 플러그인을 사용하는 경우 Getting Started 대시보드 및 API 연산을 계획하고 싶으시다면 Using @capgo/capacitor-llm Using @capgo/capacitor-llm API 개요 API 개요 소개 Introduction에서 구현 세부 정보에 대해 API 키 구현 세부 정보에 대해 API 키, 및 장치 구현 세부 정보에 대해 장치.