Eli Bendersky
Eli Bendersky
I'm trying to run locally with tracing to Stackdriver (for testing). Calling `monitoredresource.AutoDetect()` takes a while and returns a nil (unable to detect GCE/GKE/AWS), so the traces go nowhere. It...
The Ollama team has recently released native client libraries for JS (https://github.com/ollama/ollama-js) and Python (https://github.com/ollama/ollama-python). Are there plans to develop a similar native Go library?
We can have the same examples as e.g. https://github.com/ollama/ollama-python/tree/main/examples here. Using consistent naming and renaming the existing example to have -http- since it uses direct HTTP requests rather than api/...
Updates #2840 This is an initial PR just to double check that I'm heading in the right direction. If it looks good, I can update it (or send separate ones)...
Followup for #2878 Now that the documentation is more complete, mention it in the README. Once a new version of ollama is tagged, pkg.go.dev will pick up the documentation comments...
_Migrated from issue #42 on bitbucket_ I love pss as a drop-in replacement - who wants to install Perl? But it odesn't support config files yet - it'd be great...
Since #375 we have an optional `go.work` file local developers may generate with the `Makefile`. The purpose of this `go.work` file is to make sure that examples can locally use...
The [userinfo example](https://github.com/coreos/go-oidc/blob/v3/example/userinfo/app.go#L35) stores `state` in a cookie but doesn't set a `SameSite` attribute on the cookie. Is there a reason not to do so for better security?
Based on the [API docs of the new chat endpoints](https://platform.openai.com/docs/api-reference/chat/create), `function_call` is now deprecated and users are encouraged to use `tool_choice` instead. The only supported kind of `tool` is still...
Currently langchaingo is a single Go module (modulo the examples, which live in separate modules per example - consistently after #367 lands). This means that users who are only interested...