Initial working copy

This commit is contained in:
Chandler Swift 2025-12-19 23:14:28 -06:00
parent 2a335176e6
commit 2c876cef42
19 changed files with 783 additions and 126 deletions

View file

@ -0,0 +1,15 @@
package llamacpp
/*
#include "llamacpp.h"
#include <stdlib.h>
*/
import "C"
import "unsafe"
func Run() {
prompt := C.CString("Here is a very short story about a brave knight. One day, the knight")
C.chandlerscustomllama(prompt)
C.free(unsafe.Pointer(prompt))
}