mirror of
https://github.com/mudler/LocalAI.git
synced 2026-08-02 19:40:11 -04:00
The star, fork, contributor and release counts were typed into the templates by hand, so they only moved when somebody remembered. They had already drifted: stars read 48,042 against 48,067, forks 4,314 against 4,320, and contributors 224 against 225. They move to website/data/stats.yaml, which .github/ci/refresh-site-counters.sh rewrites from the GitHub API, run weekly by a new workflow. The contributors and releases endpoints never report a total, so the script asks for one item per page and reads the count out of the Link header. It refuses to write a zero or a non-number, which is what a rate-limited or failed call looks like, and the workflow commits only when a number actually moved. The Discord count has no API behind it, so the script reads the existing value back and carries it through. The engine count was wrong in a second way. The hero said 18, the section heading said "Eighteen engines", the timeline said "Nineteen engines of our own", and the /engines/ page derived 19 from the data file. All of them now derive from that same file, so they cannot disagree again. Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Assisted-by: Claude Code:claude-opus-5[1m]
32 lines
997 B
TOML
32 lines
997 B
TOML
baseURL = 'https://localai.io/'
|
|
languageCode = 'en-GB'
|
|
defaultContentLanguage = 'en'
|
|
title = 'LocalAI'
|
|
enableEmoji = true
|
|
|
|
# The main site. Documentation is a second Hugo site under ../docs,
|
|
# built with baseURL <root>/docs/ and merged into this site's public/ by CI.
|
|
# See .github/workflows/gh-pages.yml.
|
|
|
|
[params]
|
|
description = 'LocalAI is the open source AI engine. Run any model, LLMs, vision, voice, image and video, on any hardware. No GPU required.'
|
|
author = 'Ettore Di Giacinto'
|
|
docsURL = '/docs/'
|
|
github = 'https://github.com/mudler/LocalAI'
|
|
discord = 'https://discord.gg/uJAeKSAGDy'
|
|
x = 'https://twitter.com/LocalAI_API'
|
|
huggingface = 'https://huggingface.co/mudler'
|
|
# Counters live in data/stats.yaml, which .github/ci/refresh-site-counters.sh
|
|
# rewrites weekly. They used to sit here as hand-typed strings and drifted.
|
|
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[outputs]
|
|
home = ['html']
|
|
section = ['html', 'rss']
|
|
page = ['html']
|
|
|
|
[taxonomies]
|
|
tag = 'tags'
|