Skip to content

wippyai/module-embeddings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wippy logo

Embeddings Module

Latest Release License Documentation

Text embedding library that converts text into vector representations. Part of the unified LLM interface, supporting multiple providers and models.

Usage

local llm = require("llm")

-- Single text
local response = llm.embed("Text to embed", {
    model = "text-embedding-3-large"
})

-- Multiple texts
local texts = {"Text 1", "Text 2"}
local response = llm.embed(texts, {
    model = "text-embedding-3-large",
    dimensions = 1536
})

Used for semantic search, document similarity, and applications requiring text vector representations.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages