initialize

This commit is contained in:
2025-09-04 03:53:27 -06:00
commit 1114c02b7c
12 changed files with 565 additions and 0 deletions

14
tests/ollama.luau Normal file
View File

@@ -0,0 +1,14 @@
local ollama = require("@ollama")
local instance = ollama.serve()
local llmResponse = instance:generateCompletion({
model = 'qwen3:4b',
prompt = '/no_think Just respond with "working".'
})
if not llmResponse.statusCode and llmResponse.done then
return print('test passed')
end
return print('test failed')