mirror of https://github.com/Mabbs/mabbs.github.io
Update 3 files
- /llms.txt - /_tools/ai-summary.js - /humans.txt
This commit is contained in:
parent
f6b35814b1
commit
b48e93890c
|
|
@ -98,7 +98,7 @@ export default {
|
||||||
{ role: "user", content: questsion }
|
{ role: "user", content: questsion }
|
||||||
]
|
]
|
||||||
|
|
||||||
const answer = await env.AI.run('@cf/google/gemma-3-12b-it', {
|
const answer = await env.AI.run('@cf/meta/llama-4-scout-17b-16e-instruct', {
|
||||||
messages,
|
messages,
|
||||||
stream: true,
|
stream: true,
|
||||||
});
|
});
|
||||||
|
|
@ -175,7 +175,7 @@ export default {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
const stream = await env.AI.run('@cf/google/gemma-3-12b-it', {
|
const stream = await env.AI.run('@cf/meta/llama-4-scout-17b-16e-instruct', {
|
||||||
messages,
|
messages,
|
||||||
stream: true,
|
stream: true,
|
||||||
});
|
});
|
||||||
|
|
@ -235,7 +235,7 @@ export default {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
const answer = await env.AI.run('@cf/google/gemma-3-12b-it', {
|
const answer = await env.AI.run('@cf/meta/llama-4-scout-17b-16e-instruct', {
|
||||||
messages,
|
messages,
|
||||||
stream: false,
|
stream: false,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
11
humans.txt
11
humans.txt
|
|
@ -2,10 +2,13 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
/* AUTHOR */
|
/* AUTHOR */
|
||||||
Name: Mayx
|
Name: Mayx
|
||||||
Contact: mayx@outlook.com
|
Contact: mayx@outlook.com
|
||||||
GitHub: Mabbs
|
GitHub: Mabbs
|
||||||
From: China
|
From: China
|
||||||
|
|
||||||
|
/* THANKS */
|
||||||
|
Built with: Jekyll (https://jekyllrb.com)
|
||||||
|
|
||||||
/* SITE */
|
/* SITE */
|
||||||
Last update: {{ site.time | date: "%F" }}
|
Last update: {{ site.time | date: "%F" }}
|
||||||
|
|
|
||||||
3
llms.txt
3
llms.txt
|
|
@ -6,5 +6,4 @@
|
||||||
|
|
||||||
## Posts:
|
## Posts:
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
- [{{ post.title }}{% if post.layout == "encrypt" %} [加密] {% endif %}]({{ post.url }}): {% assign ai_cache = site.data.ai-cache[post.url] %}{% if ai_cache %}{{ ai_cache | strip_html }}{% elsif post.excerpt %}{{ post.excerpt | strip_html }}{% else %}Just a Post.{% endif %}
|
- [{{ post.title }}{% if post.layout == "encrypt" %} [加密] {% endif %}]({{ post.url }}): {% assign ai_cache = site.data.ai-cache[post.url] %}{% if ai_cache %}{{ ai_cache | strip_html | strip_newlines }}{% elsif post.excerpt %}{{ post.excerpt | strip_html | strip_newlines }}{% else %}Just a Post.{% endif %}{% endfor %}
|
||||||
{% endfor %}
|
|
||||||
Loading…
Reference in New Issue