MCPcopy Create free account
hub / github.com/Icecubesaad/OpenLLM-Studio / CloudModel

Interface CloudModel

src/lib/cloudModels.ts:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3export type CloudProvider = 'openrouter' | 'claude' | 'openai';
4
5export interface CloudModel {
6 id: string;
7 name: string;
8 provider: CloudProvider;
9 description: string;
10 contextWindow?: string;
11}
12
13export const OPENROUTER_MODELS: CloudModel[] = [
14 { id: 'google/gemma-4-27b-it:free', name: 'Gemma 4 27B IT (Free)', provider: 'openrouter', description: 'Google Gemma 4 27B — Free tier' },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected