Files
ragflow/web/src/pages/user-setting/interface.ts
Lynn dc4b82523b Feat: tenant llm provider (#14595)
### What problem does this PR solve?

Python implementation of the Go-based model_provider API suite.

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Co-authored-by: bill <yibie_jingnian@163.com>
2026-05-29 17:39:41 +08:00

7 lines
121 B
TypeScript

export interface ApiKeyPostBody {
instance_name: string;
api_key: string;
base_url: string;
group_id?: string;
}