Fix bug where I stopped initiating the background processes

This commit is contained in:
Eli Ribble 2026-02-13 21:46:20 +00:00
parent 26be460041
commit 8932f46900
No known key found for this signature in database
2 changed files with 8 additions and 1 deletions

View file

@ -135,6 +135,7 @@ func main() {
// Start up background processes
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
background.Start(ctx)
openai_logger := log.With().Logger()
err = llm.CreateOpenAIClient(ctx, &openai_logger)