Dévin.YF

Results 6 comments of Dévin.YF

> I like the prompt adjustment but I'm less sure about the quote stripping -- putting this in prevents callers specifying exact-search style queries, right? Yeah, to simulate this problem,...

> I think it's more appropriate for the caller to simply do a strings.Trim() call head of calling search. Yes, that’s more preferable, I merge latest main branch and updated...

update: found that the old implementation in `for xxx := range handler.egress` will never end... And will cause goroutine leak fixed this problem using `HandleAgentFinish` method ```go go func() {...

I followed this example to use memory, it works for me https://github.com/tmc/langchaingo/blob/main/examples/llm-chain-example/llm_chain.go ```go llm, err := openai.New() memory := memory.NewConversationBuffer() llmChain := chains.NewConversation(llm, memory) out, err := chains.Run(ctx, llmChain, "my...

> Does it works for you with latest version? I didn’t encountered any problem using memory in a chain conversion, This is my test code: ```go llm, _ := ollama.New(ollama.WithModel("phi"))...

Just wondering... Is it a good idea to use go-plugins to manage third-party modules like llms, tools ??