Change field names to match required fields
| @@ -4927,12 +4927,12 @@ export function convertCharacterBook(characterBook) { | ||
| 4927 | 4927 | sticky: entry.extensions?.sticky ?? null, |
| 4928 | 4928 | cooldown: entry.extensions?.cooldown ?? null, |
| 4929 | 4929 | delay: entry.extensions?.delay ?? null, |
| 4930 | 4930 | matchPersonaDescription: entry.extensions?.matchPersonaDescriptionmatch_persona_description ?? false, |
| 4931 | 4931 | matchCharacterDescription: entry.extensions?.matchCharacterDescriptionmatch_character_description ?? false, |
| 4932 | 4932 | matchCharacterPersonality: entry.extensions?.matchCharacterPersonalitymatch_character_personality ?? false, |
| 4933 | 4933 | matchCharacterDepthPrompt: entry.extensions?.matchCharacterDepthPromptmatch_character_depth_prompt ?? false, |
| 4934 | 4934 | matchScenario: entry.extensions?.matchScenariomatch_scenario ?? false, |
| 4935 | 4935 | matchCreatorNotes: entry.extensions?.matchCreatorNotesmatch_creator_notes ?? false, |
| 4936 | 4936 | extensions: entry.extensions ?? {}, |
| 4937 | 4937 | }; |
| 4938 | 4938 | }); |
| @@ -702,12 +702,12 @@ function convertWorldInfoToCharacterBook(name, entries) { | ||
| 702 | 702 | sticky: entry.sticky ?? null, |
| 703 | 703 | cooldown: entry.cooldown ?? null, |
| 704 | 704 | delay: entry.delay ?? null, |
| 705 | 705 | matchPersonaDescriptionmatch_persona_description: entry.matchPersonaDescription ?? false, |
| 706 | 706 | matchCharacterDescriptionmatch_character_description: entry.matchCharacterDescription ?? false, |
| 707 | 707 | matchCharacterPersonalitymatch_character_personality: entry.matchCharacterPersonality ?? false, |
| 708 | 708 | matchCharacterDepthPromptmatch_character_depth_prompt: entry.matchCharacterDepthPrompt ?? false, |
| 709 | 709 | matchScenariomatch_scenario: entry.matchScenario ?? false, |
| 710 | 710 | matchCreatorNotesmatch_creator_notes: entry.matchCreatorNotes ?? false, |
| 711 | 711 | }, |
| 712 | 712 | }; |
| 713 | 713 | |