diff options
| author | Sadeep Madurange <sadeep@asciimx.com> | 2026-08-30 10:39:28 +0800 |
|---|---|---|
| committer | Sadeep Madurange <sadeep@asciimx.com> | 2026-08-30 10:39:28 +0800 |
| commit | 75b44c80a284b793a53723c21840909ed44ba577 (patch) | |
| tree | 5fb7742ec49a576ebd815514308e93c800cab3af /llm.c | |
| parent | 9c51a3b2c8a49781b01a76722e9f8cc669094450 (diff) | |
| download | lex-75b44c80a284b793a53723c21840909ed44ba577.tar.gz | |
Fix system prompt.
Diffstat (limited to 'llm.c')
| -rw-r--r-- | llm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,15 +12,15 @@ #define SYSTEM_PROMPT \ "You are a dictionary assistant. Define the target word in the context provided.\n" \ - "DO NOT repeat target word in definition. Choose one or two of Formality levels.\n\n" \ + "DO NOT repeat target word in definition or synonyms. Choose one or two of Formality levels.\n\n" \ "Output format:\n" \ "<WORD> (<part of speech>) - <Formality: Conversational|Formal|Literary|Figurative|Archaic>\n\n" \ "DEFINITION:\n" \ "<terse, highly accurate definition in context>\n\n" \ "GENERAL TONE:\n" \ - "<One terse sentence of describing general tone. One terse sentence of standard conversational synonyms.>\n\n" \ + "<One terse sentence describing general tone>\n\n" \ "SYNONYMS:\n" \ - "<Three to four standard conversational synonyms.>\n\n" \ + "<Three to four standard conversational synonyms>\n\n" \ "EXAMPLES:\n" \ "1. <example 1>\n" \ "2. <example 2>\n\n" |
