Go to file
Aritra Roy Gosthipaty dcfdf596c1
[Add] Blog post on transformers backend integration with vLLM (#50)
* add transformers backend blog post

Signed-off-by: ariG23498 <aritra.born2fly@gmail.com>

OK

Signed-off-by: ariG23498 <aritra.born2fly@gmail.com>

* Apply suggestions from code review

Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: ariG23498 <aritra.born2fly@gmail.com>

* Update _posts/2025-04-11-transformers-backend.md

Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Signed-off-by: ariG23498 <aritra.born2fly@gmail.com>

OK

Signed-off-by: ariG23498 <aritra.born2fly@gmail.com>

* Update _posts/2025-04-11-transformers-backend.md

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>

---------

Signed-off-by: ariG23498 <aritra.born2fly@gmail.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
2025-04-16 12:31:00 +01:00
.github/workflows Fix vulnerabilities and improve CI (#37) 2025-02-25 14:09:57 +00:00
_includes Add `MathJax` support (#43) 2025-03-17 16:20:03 +00:00
_posts [Add] Blog post on transformers backend integration with vLLM (#50) 2025-04-16 12:31:00 +01:00
_sass/minima Add auto darkmode (#33) 2025-02-21 16:18:35 +00:00
assets [Add] Blog post on transformers backend integration with vLLM (#50) 2025-04-16 12:31:00 +01:00
.gitignore Use new template for the website 2023-11-14 12:12:47 -08:00
404.html Use remote theme instead of including it locally (#32) 2025-02-21 15:56:04 +00:00
CNAME Create CNAME 2025-02-07 00:12:24 +00:00
Gemfile Add support for GFM admonitions in the blog (#52) 2025-04-16 11:42:30 +01:00
Gemfile.lock Add support for GFM admonitions in the blog (#52) 2025-04-16 11:42:30 +01:00
README.md Add support for GFM admonitions in the blog (#52) 2025-04-16 11:42:30 +01:00
_config.yml Add support for GFM admonitions in the blog (#52) 2025-04-16 11:42:30 +01:00
favicon.ico add favicon 2024-10-29 11:28:55 -07:00
index.md Use remote theme instead of including it locally (#32) 2025-02-21 15:56:04 +00:00

README.md

vLLM blog source

Local development

  1. Install jekyll and bundler by running gem install jekyll bundler. Ask ChatGPT for help if you encounter any issues.
  2. bundle install to install the necessary gems.
  3. rm ./Gemfile.lock if you meet gem error.
  4. bundle exec jekyll server to compile and start the server.

To add a new blogpost, please refer to _posts/2023-06-20-vllm.md as an example. Some notes:

  • Google Doc can be saved as markdown format which will make your life easier.
  • Note that the blogpost will only show when its date is in the past.
  • Put figures under assets/figures/yourblogname/.
  • Make a pull request.

The blog is automatically built and deployed by GitHub Actions when main is pushed to.

LaTeX Math

The blog supports LaTeX math via MathJax.

It can be enabled by adding math: true to the document frontmatter. It has been configured to support the standard LaTeX style math notation, i.e.:

$ inline math $
$$
math block
$$

GitHub Flavored Admonitions

The blog supports GitHub flavored admonitions via jekyll-gfm-admonition. It supports the following syntax:

> [!NOTE]
> Highlights information that users should take into account, even when skimming.
> And supports multi-line text.

> [!TIP]
> Optional information to help a user be more successful.

> [!IMPORTANT]
> Crucial information necessary for users to succeed.

> [!WARNING]
> Critical content demanding immediate
> user attention due to potential risks.

> [!CAUTION]
> Negative potential consequences of an action.
> Opportunity to provide more context.

Theme customization

The theme we are using is Minima. If you need to customise anything from this theme, see Overriding theme defaults.