Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LordXido
/
CodexCapsule
like
1
Running
App
Files
Files
Community
LordXido
commited on
Jan 10
Commit
357c6cd
·
verified
·
1 Parent(s):
0a8afdf
Create llm.js
Browse files
Files changed (1)
hide
show
llm.js
+7
-0
llm.js
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
export async function llmIntent(text){
2
+
// Replace with your private endpoint later
3
+
if(text.includes("explore")){
4
+
return {type:"web", url:"wikipedia.org"};
5
+
}
6
+
return {type:"inject", v:1.2};
7
+
}