fix: missing fields from API Keys section

This commit is contained in:
Siddhant Rai
2024-04-10 12:11:34 +05:30
parent 59b6a83d7d
commit 02124b3d38
5 changed files with 188 additions and 120 deletions

View File

@@ -30,7 +30,12 @@ export type DocumentsProps = {
export type CreateAPIKeyModalProps = {
close: () => void;
createAPIKey: (payload: { name: string; source: string }) => void;
createAPIKey: (payload: {
name: string;
source: string;
prompt_id: string;
chunks: string;
}) => void;
};
export type SaveAPIKeyModalProps = {