AI driven help
-
ColdNose
- Posts: 36
- Joined: 16 Jun 2017 09:21
- Location: Win11, 3 monitors: (1) 1920x1200 @ 125%, (2) 3840x2160 @ 175%
AI driven help
If there's one product that can benefit from AI, it's XYplorer! It's so powerful, with so many options, that I often wonder how everyone remembers a fraction of what's possible. My dream wish is to have the Help file and the contents of this (huge!) forum fed into a LLM that can be queried with a chatbot. Now THAT would be a feature!
"Write me a script that ...." !! 
-
admin
- Site Admin
- Posts: 65174
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: AI driven help
This forum is great training material and it's public. I haven't checked, but ChatGPT can probably answer all your questions already.
FAQ | XY News RSS | XY X
Re: AI driven help
Already possible...
Spaces in Perplexity (https://www.perplexity.ai), probably requiring a pro account
Version 01: Uploaded the XY pdf help file and set it to only use this as a reference
Prompt: write a script that selects 10 random files in the current list pane
Script:
Version 02: With the pdf file and the selection of using the internet to search, same prompt
Script:
Both are just trash...
Spaces in Perplexity (https://www.perplexity.ai), probably requiring a pro account
Version 01: Uploaded the XY pdf help file and set it to only use this as a reference
Prompt: write a script that selects 10 random files in the current list pane
Script:
Code: Select all
// Select 10 random files in the current list pane
$files = listfiles();
$count = min(10, $files->itemcount);
$selected = array();
while ($selected->itemcount < $count) {
$randomIndex = random(0, $files->itemcount - 1);
$randomFile = $files->item($randomIndex);
if (!$selected->contains($randomFile)) {
$selected->push($randomFile);
select $randomFile;
}
}
Script:
Code: Select all
// Select 10 random files in the current list pane
$files = get("listfiles");
$count = min(10, $files->length);
$selected = array();
while ($selected->length < $count) {
$index = random(0, $files->length - 1);
if (!$selected->contains($index)) {
$selected->push($index);
selectitem($files->item($index));
}
}
One of my scripts helped you out? Please donate via Paypal
Re: AI driven help
+1 to this!
I was thinking the same thing. But not only the help files, but something that can scan and reference the entirety of the XYPlorer forums.
Because there are so many great answers there as well.
This would be something that would help all current users and attract new power users.
I was thinking the same thing. But not only the help files, but something that can scan and reference the entirety of the XYPlorer forums.
Because there are so many great answers there as well.
This would be something that would help all current users and attract new power users.
-
admin
- Site Admin
- Posts: 65174
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: AI driven help
The limits of language models. Talk made of talk. No grounding in reality. And can't say "I don't know." Reminds me of politicians.
FAQ | XY News RSS | XY X
XYplorer Beta Club