2023-11-29 14:00:37 -05:00
|
|
|
//go:build !darwin
|
|
|
|
|
|
|
|
package llm
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2023-12-20 13:36:01 -05:00
|
|
|
#include "dynamic_shim.h"
|
2023-11-29 14:00:37 -05:00
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"path/filepath"
|
|
|
|
"sync"
|
|
|
|
"unsafe"
|
|
|
|
|
|
|
|
"github.com/jmorganca/ollama/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
type shimExtServer struct {
|
2023-12-20 13:36:01 -05:00
|
|
|
s C.struct_dynamic_llama_server
|
2023-11-29 14:00:37 -05:00
|
|
|
options api.Options
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note: current implementation does not support concurrent instantiations
|
|
|
|
var shimMutex sync.Mutex
|
|
|
|
var llm *shimExtServer
|
|
|
|
|
|
|
|
func (llm *shimExtServer) llama_server_init(sparams *C.ext_server_params_t, err *C.ext_server_resp_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_init(llm.s, sparams, err)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_start() {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_start(llm.s)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_stop() {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_stop(llm.s)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) llama_server_completion(json_req *C.char, resp *C.ext_server_resp_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_completion(llm.s, json_req, resp)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_completion_next_result(task_id C.int, resp *C.ext_server_task_result_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_completion_next_result(llm.s, task_id, resp)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_completion_cancel(task_id C.int, err *C.ext_server_resp_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_completion_cancel(llm.s, task_id, err)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_release_task_result(result *C.ext_server_task_result_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_release_task_result(llm.s, result)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) llama_server_tokenize(json_req *C.char, json_resp **C.char, err *C.ext_server_resp_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_tokenize(llm.s, json_req, json_resp, err)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_detokenize(json_req *C.char, json_resp **C.char, err *C.ext_server_resp_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_detokenize(llm.s, json_req, json_resp, err)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_embedding(json_req *C.char, json_resp **C.char, err *C.ext_server_resp_t) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_embedding(llm.s, json_req, json_resp, err)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
func (llm *shimExtServer) llama_server_release_json_resp(json_resp **C.char) {
|
2023-12-20 13:36:01 -05:00
|
|
|
C.dynamic_shim_llama_server_release_json_resp(llm.s, json_resp)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
|
2024-01-08 16:42:00 -05:00
|
|
|
func newDynamicShimExtServer(library, model string, adapters, projectors []string, opts api.Options) (extServer, error) {
|
2023-12-20 13:36:01 -05:00
|
|
|
shimMutex.Lock()
|
|
|
|
defer shimMutex.Unlock()
|
2023-12-23 14:35:44 -05:00
|
|
|
updatePath(filepath.Dir(library))
|
2023-12-20 13:36:01 -05:00
|
|
|
libPath := C.CString(library)
|
|
|
|
defer C.free(unsafe.Pointer(libPath))
|
|
|
|
resp := newExtServerResp(128)
|
|
|
|
defer freeExtServerResp(resp)
|
|
|
|
var srv C.struct_dynamic_llama_server
|
|
|
|
C.dynamic_shim_init(libPath, &srv, &resp)
|
|
|
|
if resp.id < 0 {
|
|
|
|
return nil, fmt.Errorf("Unable to load dynamic library: %s", C.GoString(resp.msg))
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
2023-12-20 13:36:01 -05:00
|
|
|
llm = &shimExtServer{
|
|
|
|
s: srv,
|
|
|
|
options: opts,
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
2023-12-20 13:36:01 -05:00
|
|
|
log.Printf("Loading Dynamic Shim llm server: %s", library)
|
2024-01-08 16:42:00 -05:00
|
|
|
return newExtServer(llm, model, adapters, projectors, opts)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) Predict(ctx context.Context, pred PredictOpts, fn func(PredictResult)) error {
|
2024-01-03 12:01:42 -05:00
|
|
|
return predict(ctx, llm, pred, fn)
|
2023-11-29 14:00:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) Encode(ctx context.Context, prompt string) ([]int, error) {
|
|
|
|
return encode(llm, ctx, prompt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) Decode(ctx context.Context, tokens []int) (string, error) {
|
|
|
|
return decode(llm, ctx, tokens)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) Embedding(ctx context.Context, input string) ([]float64, error) {
|
|
|
|
return embedding(llm, ctx, input)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (llm *shimExtServer) Close() {
|
|
|
|
close(llm)
|
|
|
|
}
|