mirror of
https://github.com/ollama/ollama.git
synced 2025-04-25 07:51:32 +02:00
This switches darwin to dynamic loading, and refactors the code now that no static linking of the library is used on any platform
9 lines
100 B
Go
9 lines
100 B
Go
package llm
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed llama.cpp/build/linux/*/lib/*.so
|
|
var libEmbed embed.FS
|