mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-12 04:24:24 +01:00
chore: address ESLint comments
This commit is contained in:
parent
69772317b2
commit
cee11d3353
9 changed files with 31 additions and 31 deletions
|
|
@ -513,7 +513,7 @@ export type TPromptGroup = {
|
|||
category?: string;
|
||||
projectIds?: string[];
|
||||
productionId?: string | null;
|
||||
productionPrompt?: Pick<TPrompt, 'prompt'> | null;
|
||||
productionPrompt?: Pick<TPrompt, 'prompt' | 'tool_resources'> | null;
|
||||
author: string;
|
||||
authorName: string;
|
||||
createdAt?: Date;
|
||||
|
|
@ -592,7 +592,7 @@ export type TMakePromptProductionResponse = {
|
|||
export type TMakePromptProductionRequest = {
|
||||
id: string;
|
||||
groupId: string;
|
||||
productionPrompt: Pick<TPrompt, 'prompt'>;
|
||||
productionPrompt: Pick<TPrompt, 'prompt' | 'tool_resources'>;
|
||||
};
|
||||
|
||||
export type TUpdatePromptLabelsRequest = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue