Thuc Le
Thuc Le
Currently, I need to build something like: ``` Select * from stores where (location in radius 10km) or name = 'Hola' ``` Do we support this feautre?
From dialogflow response, sometime the `Type` is number, sometime is string. So need to support to make sure the Unmarshal function don't crash and fail the flow
I create a pagging, hope it's useful for you
When I try and build the example of tt1 from `go install github.com/yob/pdfreader/tt1`. I got an error: ``` # github.com/yob/pdfreader/type1 ../../../yob/pdfreader/type1/type1.go:269: initialization loop: /Users/thucle/.gvm/pkgsets/go1.8/global/src/github.com/yob/pdfreader/type1/type1.go:269 Ops refers to /Users/thucle/.gvm/pkgsets/go1.8/global/src/github.com/yob/pdfreader/type1/type1.go:107 (*TypeOneI).op_ifelse refers...
try with following code: ```go package main import ( "context" "fmt" "github.com/tmc/langchaingo/agents" "github.com/tmc/langchaingo/chains" "github.com/tmc/langchaingo/llms/ollama" "github.com/tmc/langchaingo/tools" "github.com/tmc/langchaingo/tools/serpapi" ) func main() { search, err := serpapi.New() if err != nil { panic(err)...
# Add OpenAI Response type JSON schema ## Description This PR adds support for defining JSON Schema when working with OpenAI through Lingoose. This enhancement allows users to specify the...
**Is your feature request related to a problem? Please describe.** I'm currently using Lingoose with OpenAI, and one of my project requirements involves defining response types using JSON Schema, as...
I'm try testing with the chain code: ```go token := os.Getenv("OPEN_API_TOKEN") llm, err := openai.New(openai.WithModel("gpt-4.1-nano"), openai.WithToken(token)) if err != nil { ... } agentTools := []tools.Tool{ tools.Calculator{}, } agent :=...