diff options
| author | Olcan <[email protected]> | 2025-05-12 16:41:11 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-12 16:41:11 -0700 |
| commit | 5ec254253f1b7f4a74b8f107ac7a1f7e5c8cbb6f (patch) | |
| tree | 39dad70f9690309971c064352a406907a3b780f9 /packages/server/src | |
| parent | 884d6ebfd855581347a3298fc263afeaf361164a (diff) | |
ensure no 'undefined' in system prompt (#322)
Diffstat (limited to 'packages/server/src')
| -rw-r--r-- | packages/server/src/core/prompts.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/server/src/core/prompts.ts b/packages/server/src/core/prompts.ts index f2237581..003616ae 100644 --- a/packages/server/src/core/prompts.ts +++ b/packages/server/src/core/prompts.ts @@ -126,6 +126,7 @@ ${(function () { - Never push changes to a remote repository without being asked explicitly by the user. `; } + return ''; })()} # Examples (Illustrating Tone and Workflow) |
