Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LordXido
/
CodexCapsule
like
1
Running
App
Files
Files
Community
cb68079
CodexCapsule
/
llm.js
LordXido
Create llm.js
357c6cd
verified
3 months ago
raw
Copy download link
history
blame
Safe
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
};
}