This commit is contained in:
2025-11-22 18:32:19 +01:00
parent 3d8effeac7
commit 27d2723023
9 changed files with 153 additions and 4 deletions

View File

@@ -10,8 +10,21 @@ mut cl := client.new()!
// max_completion_tokens: 1024
// )!
response := cl.llms.llm_embed_local.embed(input: [
'The food was delicious and the waiter..',
])!
response := cl.llms.llm_maverick.chat_completion(
message: 'Explain quantum computing in simple terms'
temperature: 0.5
max_completion_tokens: 1024
)!
println(response)
// response := cl.llms.llm_embed_local.embed(input: [
// 'The food was delicious and the waiter..',
// ])!
// response2 := cl.llms.llm_embed.embed(input: [
// 'The food was delicious and the waiter..',
// ])!
println(response2)