diff options
| author | Jeff Carr <[email protected]> | 2025-08-29 13:23:04 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-29 13:23:04 -0500 |
| commit | 148201b5c53a14f88b2032090f38976b5e7f29e2 (patch) | |
| tree | 86dceac0995e13597b645bc79717694b944ab659 | |
| parent | 700a868a3aa41f07f7c314310c177c9d8d2b9b5d (diff) | |
fix regex newchat
| -rw-r--r-- | packages/cli/src/gemini.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx index 9185b417..48c0b32c 100644 --- a/packages/cli/src/gemini.tsx +++ b/packages/cli/src/gemini.tsx @@ -162,8 +162,8 @@ export async function main() { // Create a new chat on startup. try { - const topic = execFileSync('/home/jcarr/go/bin/regex', ['--get-next-auto-topic'], { encoding: 'utf8' }); - execFileSync('/home/jcarr/go/bin/regex', ['--new-chat', sessionId, topic.trim()]); + // const topic = execFileSync('/home/jcarr/go/bin/regex', ['--get-next-auto-topic'], { encoding: 'utf8' }); + execFileSync('/home/jcarr/go/bin/regex', ['--uuid', sessionId, '--topic', 'blah', 'newchat']); } catch (e) { console.error(`Error creating new chat: ${e}`); } |
