Add ability to make LLM agent forget the conversation history

This is extremely useful for testing.

In order to do this I needed to actually deploy the migration to a bob
fork so I could start to add support for behaviors I really want.
Specifically the ability to search for ids in a slice.
This commit is contained in:
Eli Ribble 2026-01-27 18:44:02 +00:00
parent b8e7b9b7fd
commit a68b8781e7
No known key found for this signature in database
302 changed files with 1428 additions and 1256 deletions

View file

@ -77,7 +77,8 @@ func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
err = llm.CreateOpenAIClient(ctx)
openai_logger := log.With().Logger()
err = llm.CreateOpenAIClient(ctx, &openai_logger)
if err != nil {
log.Error().Err(err).Msg("Failed to start openAI client")
os.Exit(5)