Skip to content

Conversation

@Shaoting-Feng
Copy link
Collaborator

FILL IN THE PR DESCRIPTION HERE

FIX #xxxx (link existing issues this PR will resolve)

BEFORE SUBMITTING, PLEASE READ THE CHECKLIST BELOW AND FILL IN THE DESCRIPTION ABOVE


  • Make sure the code changes pass the pre-commit checks.
  • Sign-off your commit by using -s when doing git commit
  • Try to classify PRs for easy understanding of the type of changes, such as [Bugfix], [Feat], and [CI].
Detailed Checklist (Click to Expand)

Thank you for your contribution to production-stack! Before submitting the pull request, please ensure the PR meets the following criteria. This helps us maintain the code quality and improve the efficiency of the review process.

PR Title and Classification

Please try to classify PRs for easy understanding of the type of changes. The PR title is prefixed appropriately to indicate the type of change. Please use one of the following:

  • [Bugfix] for bug fixes.
  • [CI/Build] for build or continuous integration improvements.
  • [Doc] for documentation fixes and improvements.
  • [Feat] for new features in the cluster (e.g., autoscaling, disaggregated prefill, etc.).
  • [Router] for changes to the vllm_router (e.g., routing algorithm, router observability, etc.).
  • [Misc] for PRs that do not fit the above categories. Please use this sparingly.

Note: If the PR spans more than one category, please include all relevant prefixes.

Code Quality

The PR need to meet the following code quality standards:

  • Pass all linter checks. Please use pre-commit to format your code. See README.md for installation.
  • The code need to be well-documented to ensure future contributors can easily understand the code.
  • Please include sufficient tests to ensure the change is stay correct and robust. This includes both unit tests and integration tests.

DCO and Signed-off-by

When contributing changes to this project, you must agree to the DCO. Commits must include a Signed-off-by: header which certifies agreement with the terms of the DCO.

Using -s with git commit will automatically add this header.

What to Expect for the Reviews

We aim to address all PRs in a timely manner. If no one reviews your PR within 5 days, please @-mention one of YuhanLiu11
, Shaoting-Feng or ApostaC.

Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary of Changes

Hello @Shaoting-Feng, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request seems to be part of an ongoing effort to test or set up the continuous integration (CI) environment. It primarily introduces a utility script for installing Helm, a crucial tool for managing Kubernetes applications, suggesting preparation for deployment-related CI steps. A small, temporary logging change was also made, likely for debugging purposes within the CI runner.

Highlights

  • CI/Build Infrastructure: I've identified the addition of a comprehensive shell script (get_helm.sh) designed to automate the installation of the Helm CLI tool. This is a common requirement for CI/CD pipelines that interact with Kubernetes clusters.
  • CI Runner Testing/Debugging: A minor, likely temporary, logging statement (logger.info("shaoting test")) was introduced into src/vllm_router/app.py. This change appears to be for debugging or verifying the execution path within a CI runner environment.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments or fill out our survey to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a script for installing Helm and includes a test log message in the router application. The review focuses on ensuring the new script is robust and that temporary test code is removed. A critical issue was found in src/vllm_router/app.py where a test log message should be removed. Several high and medium severity issues were identified in the new utils/get_helm.sh script, mainly concerning shell scripting best practices like quoting variables to prevent word splitting and improving error reporting for a better user experience.

Signed-off-by: Shaoting <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
@Shaoting-Feng Shaoting-Feng changed the title [CI/Build] Test ci runner [CI/Build] Change CI runner to L4 Jul 23, 2025
Copy link
Collaborator

@ApostaC ApostaC left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@ApostaC ApostaC merged commit bb6644f into vllm-project:main Jul 23, 2025
14 checks passed
ikaadil pushed a commit to ikaadil/production-stack that referenced this pull request Jul 26, 2025
* Add env clean up before run

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all pods

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all release

Signed-off-by: Shaoting Feng <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Change python version from 3.12 to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* delete get helm

Signed-off-by: Shaoting Feng <[email protected]>

* change back python version

Signed-off-by: Shaoting Feng <[email protected]>

* trigger

Signed-off-by: Shaoting Feng <[email protected]>

* Add cache: pip

Signed-off-by: Shaoting Feng <[email protected]>

* Try check-latest: true

Signed-off-by: Shaoting Feng <[email protected]>

* Changing to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* change to 3.9

Signed-off-by: Shaoting Feng <[email protected]>

* Specify 3.9.2

Signed-off-by: Shaoting Feng <[email protected]>

* Use conda python

Signed-off-by: Shaoting Feng <[email protected]>

* Fix vllm without conda

Signed-off-by: Shaoting Feng <[email protected]>

---------

Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>
YuhanLiu11 added a commit that referenced this pull request Aug 5, 2025
…concurrency performance (#589)

* feat: update requirements to include aiohttp

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: replace HTTPX with aiohttp for asynchronous client handling

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: replace HTTPXClientWrapper with AiohttpClientWrapper for improved async handling

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: replace HTTPXClientWrapper with AiohttpClientWrapper in lifespan management

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: remove httpx from requirements for aiohttp integration

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* refactor: switch from httpx to aiohttp for asynchronous client handling in service discovery

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: add AiohttpClientWrapper for asynchronous HTTP client handling

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: pin aiohttp version to 3.9.5 in requirements

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* refactor: migrate from httpx to aiohttp for asynchronous HTTP requests in request service

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* refactor: update file upload implementation to use aiohttp for asynchronous requests

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: replace httpx with aiohttp in project dependencies and test requirements

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: format dependencies in pyproject.toml for consistency

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: clean up imports and ensure consistent aiohttp version in requirements

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* fix: update aiohttp client closure method for consistency and accuracy in logging

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* fix: correct status code handling in request processing for improved response accuracy

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* bumping version (#593)

Signed-off-by: YuhanLiu11 <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Added option to specify priority class (#557)

Signed-off-by: Fabijan Marič Vild <[email protected]>
Co-authored-by: Yuhan Liu <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [CI/Build] Change CI runner to L4 (#595)

* Add env clean up before run

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all pods

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all release

Signed-off-by: Shaoting Feng <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Change python version from 3.12 to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* delete get helm

Signed-off-by: Shaoting Feng <[email protected]>

* change back python version

Signed-off-by: Shaoting Feng <[email protected]>

* trigger

Signed-off-by: Shaoting Feng <[email protected]>

* Add cache: pip

Signed-off-by: Shaoting Feng <[email protected]>

* Try check-latest: true

Signed-off-by: Shaoting Feng <[email protected]>

* Changing to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* change to 3.9

Signed-off-by: Shaoting Feng <[email protected]>

* Specify 3.9.2

Signed-off-by: Shaoting Feng <[email protected]>

* Use conda python

Signed-off-by: Shaoting Feng <[email protected]>

* Fix vllm without conda

Signed-off-by: Shaoting Feng <[email protected]>

---------

Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [Bugfix] fix dynamic config (#598)

* [hotfix] fix dynamic config

Signed-off-by: Rui Zhang <[email protected]>

* [Bugfix] Add missing field for reconfiguration

Signed-off-by: Rui Zhang <[email protected]>

---------

Signed-off-by: Rui Zhang <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [refactor] redesign RST documentation (#592)

* initial reorg

Signed-off-by: Kobe Chen <[email protected]>

* pass CICD

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* fix: update helm.rst

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* Sharing KV Cache Across Instances

Signed-off-by: Kobe Chen <[email protected]>

* docker

Signed-off-by: Kobe Chen <[email protected]>

* community meeting

Signed-off-by: Kobe Chen <[email protected]>

* add deployment 3 options

Signed-off-by: Kobe Chen <[email protected]>

* remove A:

Signed-off-by: Kobe Chen <[email protected]>

* docker

Signed-off-by: Kobe Chen <[email protected]>

---------

Signed-off-by: Kobe Chen <[email protected]>
Co-authored-by: Yuhan Liu <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [Misc] revert uv.lock (#604)

Signed-off-by: Kobe Chen <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* fix: update response content iteration method for improved performance

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Replace httpx with aiohttp for prefill and decode clients in K8sServiceNameServiceDiscovery, updating timeout handling accordingly.

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Update file upload function to include file parameter in aiohttp post request

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Refactor response handling in request service to return JSON data and correctly set response status code in sleep/wakeup routing.

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Add initialization of aiohttp ClientSession in service discovery during app startup

- Implemented  method in , , and  classes to set up aiohttp ClientSession for prefill and decode endpoints.
- Updated  function in  to call  if available, ensuring proper session management during application startup.
- Adjusted logging statements in  to reference the  attribute of the client sessions for accurate logging of routing requests.

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Refactor whitespace and formatting in app.py for improved readability

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

---------

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>
Signed-off-by: YuhanLiu11 <[email protected]>
Signed-off-by: Fabijan Marič Vild <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Signed-off-by: Rui Zhang <[email protected]>
Signed-off-by: Kobe Chen <[email protected]>
Co-authored-by: Yuhan Liu <[email protected]>
Co-authored-by: Fabhiahn <[email protected]>
Co-authored-by: Shaoting <[email protected]>
Co-authored-by: Rui Zhang <[email protected]>
Co-authored-by: Kobe Chen <[email protected]>
Senne-Mennes pushed a commit to Senne-Mennes/production-stack that referenced this pull request Oct 22, 2025
* Add env clean up before run

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all pods

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all release

Signed-off-by: Shaoting Feng <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Change python version from 3.12 to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* delete get helm

Signed-off-by: Shaoting Feng <[email protected]>

* change back python version

Signed-off-by: Shaoting Feng <[email protected]>

* trigger

Signed-off-by: Shaoting Feng <[email protected]>

* Add cache: pip

Signed-off-by: Shaoting Feng <[email protected]>

* Try check-latest: true

Signed-off-by: Shaoting Feng <[email protected]>

* Changing to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* change to 3.9

Signed-off-by: Shaoting Feng <[email protected]>

* Specify 3.9.2

Signed-off-by: Shaoting Feng <[email protected]>

* Use conda python

Signed-off-by: Shaoting Feng <[email protected]>

* Fix vllm without conda

Signed-off-by: Shaoting Feng <[email protected]>

---------

Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Signed-off-by: [email protected] <[email protected]>
Senne-Mennes pushed a commit to Senne-Mennes/production-stack that referenced this pull request Oct 22, 2025
…concurrency performance (vllm-project#589)

* feat: update requirements to include aiohttp

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: replace HTTPX with aiohttp for asynchronous client handling

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: replace HTTPXClientWrapper with AiohttpClientWrapper for improved async handling

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: replace HTTPXClientWrapper with AiohttpClientWrapper in lifespan management

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: remove httpx from requirements for aiohttp integration

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* refactor: switch from httpx to aiohttp for asynchronous client handling in service discovery

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* feat: add AiohttpClientWrapper for asynchronous HTTP client handling

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: pin aiohttp version to 3.9.5 in requirements

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* refactor: migrate from httpx to aiohttp for asynchronous HTTP requests in request service

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* refactor: update file upload implementation to use aiohttp for asynchronous requests

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: replace httpx with aiohttp in project dependencies and test requirements

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: format dependencies in pyproject.toml for consistency

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* chore: clean up imports and ensure consistent aiohttp version in requirements

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* fix: update aiohttp client closure method for consistency and accuracy in logging

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* fix: correct status code handling in request processing for improved response accuracy

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* bumping version (vllm-project#593)

Signed-off-by: YuhanLiu11 <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Added option to specify priority class (vllm-project#557)

Signed-off-by: Fabijan Marič Vild <[email protected]>
Co-authored-by: Yuhan Liu <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [CI/Build] Change CI runner to L4 (vllm-project#595)

* Add env clean up before run

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all pods

Signed-off-by: Shaoting Feng <[email protected]>

* Delete all release

Signed-off-by: Shaoting Feng <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* test ci runner

Signed-off-by: Shaoting <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Test again

Signed-off-by: Shaoting Feng <[email protected]>

* Change python version from 3.12 to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* delete get helm

Signed-off-by: Shaoting Feng <[email protected]>

* change back python version

Signed-off-by: Shaoting Feng <[email protected]>

* trigger

Signed-off-by: Shaoting Feng <[email protected]>

* Add cache: pip

Signed-off-by: Shaoting Feng <[email protected]>

* Try check-latest: true

Signed-off-by: Shaoting Feng <[email protected]>

* Changing to 3.10

Signed-off-by: Shaoting Feng <[email protected]>

* change to 3.9

Signed-off-by: Shaoting Feng <[email protected]>

* Specify 3.9.2

Signed-off-by: Shaoting Feng <[email protected]>

* Use conda python

Signed-off-by: Shaoting Feng <[email protected]>

* Fix vllm without conda

Signed-off-by: Shaoting Feng <[email protected]>

---------

Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [Bugfix] fix dynamic config (vllm-project#598)

* [hotfix] fix dynamic config

Signed-off-by: Rui Zhang <[email protected]>

* [Bugfix] Add missing field for reconfiguration

Signed-off-by: Rui Zhang <[email protected]>

---------

Signed-off-by: Rui Zhang <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [refactor] redesign RST documentation (vllm-project#592)

* initial reorg

Signed-off-by: Kobe Chen <[email protected]>

* pass CICD

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* fix: update helm.rst

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* fix

Signed-off-by: Kobe Chen <[email protected]>

* Sharing KV Cache Across Instances

Signed-off-by: Kobe Chen <[email protected]>

* docker

Signed-off-by: Kobe Chen <[email protected]>

* community meeting

Signed-off-by: Kobe Chen <[email protected]>

* add deployment 3 options

Signed-off-by: Kobe Chen <[email protected]>

* remove A:

Signed-off-by: Kobe Chen <[email protected]>

* docker

Signed-off-by: Kobe Chen <[email protected]>

---------

Signed-off-by: Kobe Chen <[email protected]>
Co-authored-by: Yuhan Liu <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* [Misc] revert uv.lock (vllm-project#604)

Signed-off-by: Kobe Chen <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* fix: update response content iteration method for improved performance

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Replace httpx with aiohttp for prefill and decode clients in K8sServiceNameServiceDiscovery, updating timeout handling accordingly.

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Update file upload function to include file parameter in aiohttp post request

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Refactor response handling in request service to return JSON data and correctly set response status code in sleep/wakeup routing.

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Add initialization of aiohttp ClientSession in service discovery during app startup

- Implemented  method in , , and  classes to set up aiohttp ClientSession for prefill and decode endpoints.
- Updated  function in  to call  if available, ensuring proper session management during application startup.
- Adjusted logging statements in  to reference the  attribute of the client sessions for accurate logging of routing requests.

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

* Refactor whitespace and formatting in app.py for improved readability

Signed-off-by: Ifta Khairul Alam Adil <[email protected]>

---------

Signed-off-by: Ifta khairul Alam Adil <[email protected]>
Signed-off-by: Ifta Khairul Alam Adil <[email protected]>
Signed-off-by: YuhanLiu11 <[email protected]>
Signed-off-by: Fabijan Marič Vild <[email protected]>
Signed-off-by: Shaoting Feng <[email protected]>
Signed-off-by: Shaoting <[email protected]>
Signed-off-by: Rui Zhang <[email protected]>
Signed-off-by: Kobe Chen <[email protected]>
Co-authored-by: Yuhan Liu <[email protected]>
Co-authored-by: Fabhiahn <[email protected]>
Co-authored-by: Shaoting <[email protected]>
Co-authored-by: Rui Zhang <[email protected]>
Co-authored-by: Kobe Chen <[email protected]>
Signed-off-by: [email protected] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants