DOCS: Add llms.txt guide on how to use with LM Studio

This commit is contained in:
Gabriel Grubba
2025-04-01 20:48:01 -03:00
parent 263657c336
commit 7d828dd45b
3 changed files with 24 additions and 7 deletions

View File

@@ -118,6 +118,19 @@ To be able to use the `meteor` command from fish it's needed to include `/home/<
`set PATH /home/<user>/.meteor $PATH`
## Using AI with Meteor docs {#ai-docs}
Meteor docs ships with [llms.txt](https://llmstxt.org/) file, which allows you to use AI tools like ChatGPT to answer questions about Meteor.
If you have LM Studio installed or any other LLM tool, you can use the llms.txt file to ask questions about Meteor.
```bash
curl https://docs.meteor.com/llms-full.txt -o meteor-docs.txt
```
Then, you can use the file with your LLM tool of choice. For example, if you have LM Studio installed, you can use their [chat with documents feature](https://lmstudio.ai/docs/app/basics/rag)
to ask questions about Meteor.
## Uninstalling Meteor {#uninstall}
If you installed Meteor using npx, you can remove it by running:

View File

@@ -26,9 +26,13 @@ export default {
},
{
"version": "v3.1.2",
"url": "https://release-3-1-2.docs.meteor.com/",
"url": "https://release-3-1-2.docs.meteor.com/"
},
{
"version": "v3.2.0",
"url": "https://release-3-2-0.docs.meteor.com/",
"isCurrent": true
}
],
"currentVersion": "v3.1.2"
"currentVersion": "v3.2.0"
}

View File

@@ -10,6 +10,8 @@ This is a complete history of changes for Meteor releases.
[//]: # (go to meteor/docs/generators/changelog/docs)
## v3.2.0, 2025-03-18
### Highlights
@@ -17,9 +19,9 @@ This is a complete history of changes for Meteor releases.
- Upgrade to Node 22.14.0 & Mongo 7.0.16.
- Implement `meteor profile` command to show performance metrics of Meteor apps.
- Fix Meteor profiler to handle promises and display metrics correctly.
- Support for argon2 to improve password security over bcrypt. [PR #13554](https://github.com/meteor/meteor/pull/13554)
- Improve and fix package resolution logic. [PR #13604](https://github.com/meteor/meteor/pull/13604)
- Fix rare oplog issue that could cause data loss for clients. [PR #13603](https://github.com/meteor/meteor/pull/13603)
- Support for argon2 to improve password security over bcrypt. [PR](https://github.com/meteor/meteor/pull/13554)(https://github.com/meteor/meteor/pull/13554)
- Improve and fix package resolution logic. [PR](https://github.com/meteor/meteor/pull/13604)(https://github.com/meteor/meteor/pull/13604)
- Fix rare oplog issue that could cause data loss for clients. [PR](https://github.com/meteor/meteor/pull/13603)(https://github.com/meteor/meteor/pull/13603)
All detailed PRs can be found here: https://github.com/meteor/meteor/pulls?q=is%3Apr+is%3Amerged+base%3Arelease-3.2
@@ -76,8 +78,6 @@ meteor update --release 3.2
- [@Seb-Dion](https://github.com/Seb-Dion)
✨✨✨
## v3.1.2, 2025-02-06
### Highlights