mirror of
https://github.com/router-for-me/Cli-Proxy-API-Management-Center.git
synced 2026-02-03 03:10:50 +08:00
17 lines
281 B
TypeScript
17 lines
281 B
TypeScript
/**
|
|
* Amp CLI Integration (ampcode) 配置
|
|
*/
|
|
|
|
export interface AmpcodeModelMapping {
|
|
from: string;
|
|
to: string;
|
|
}
|
|
|
|
export interface AmpcodeConfig {
|
|
upstreamUrl?: string;
|
|
upstreamApiKey?: string;
|
|
modelMappings?: AmpcodeModelMapping[];
|
|
forceModelMappings?: boolean;
|
|
}
|
|
|