File size: 201 Bytes
357c6cd
 
 
 
 
 
 
1
2
3
4
5
6
7
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};
}