Travis Cline

Results 197 issues of Travis Cline

As has been discussed we need to refresh/rework the docs site.

Taking inspiration from [httprr](https://pkg.go.dev/golang.org/x/oscar/internal/httprr) we should be recording and replaying http calls as it provides a number of benefits.

I'm disabling these tests because they are slow and appear to fail often, this is a placeholder to re-enable them. The test should not simply sleep, but should probe for...

## Summary Adds support for Ollama's context feature to enable short conversational memory between requests. This addresses GitHub discussion #973. ## Changes - Add WithContext([]int) option function to Ollama client...

## Summary Provides comprehensive analysis of value vs pointer receiver patterns across the langchaingo codebase in response to GitHub discussion #94. ## Analysis Results **Findings:** - 📊 148 types with...

This PR proposes some ideas for memory management, related to [Discussion #124](https://github.com/tmc/langchaingo/discussions/124) and [Discussion #317](https://github.com/tmc/langchaingo/discussions/317) about context length handling. ### Configuration Example ```go memoryBuffer := memory.NewEnhancedTokenBuffer( memory.WithTokenLimit(2000), // Maximum tokens...