go-ollama: first release v0.1.0

This commit is contained in:
2026-02-23 11:40:05 +01:00
parent ad8e4025b2
commit 69172f6d5f
15 changed files with 787 additions and 0 deletions

5
utils.go Normal file
View File

@@ -0,0 +1,5 @@
package ollama
func PtrOf[T any](v T) *T {
return &v
}