CodexCapsule / llm.js
LordXido's picture
Create llm.js
357c6cd verified
raw
history blame
201 Bytes
export async function llmIntent(text){
// Replace with your private endpoint later
if(text.includes("explore")){
return {type:"web", url:"wikipedia.org"};
}
return {type:"inject", v:1.2};
}