Skip to content

Commit 62c6032

Browse files
update(llm): links
1 parent 222b405 commit 62c6032

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/getting-started/llm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ AI still has shortcomings and limitations and it is not a replacement for human
2121

2222
The LLMs files are hosted on the following routes on Flowbite:
2323

24-
- `https://flowbite.com/llms.txt` - this is the main file that you can use to feed data to your AI tools
25-
- `https://flowbite.com/llms-full.txt` - this is the full file that is much larger and contains more data
24+
- `https://raw.githubusercontent.com/themesberg/flowbite/refs/heads/main/llms.txt` - this is the main file that you can use to feed data to your AI tools
25+
- `https://raw.githubusercontent.com/themesberg/flowbite/refs/heads/main/llms-full.txt` - this is the full file that is much larger and contains more data
2626

2727
On a general level, the first file should be enough for LLMs that are able to parse the web.
2828

@@ -41,7 +41,7 @@ You can use the following code examples to implement LLMs in your web applicatio
4141

4242
```javascript
4343
async function getLLMData() {
44-
const response = await fetch('https://flowbite.com/llms.txt');
44+
const response = await fetch('https://raw.githubusercontent.com/themesberg/flowbite/refs/heads/main/llms.txt');
4545
const data = await response.text();
4646
return data;
4747
}

0 commit comments

Comments
 (0)