mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? fix: add group id field to ApiKeyModal #1353 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
export interface ApiKeyPostBody {
|
|
api_key: string;
|
|
base_url: string;
|
|
group_id?: string;
|
|
}
|