1. 01 Sep, 2025 1 commit
  2. 03 Jun, 2025 1 commit
  3. 26 May, 2025 1 commit
  4. 08 Apr, 2025 1 commit
  5. 03 Mar, 2025 1 commit
  6. 02 Feb, 2025 1 commit
    • Russell Bryant's avatar
      [Misc] Add SPDX-License-Identifier headers to python source files (#12628) · e489ad7a
      Russell Bryant authored
      - **Add SPDX license headers to python source files**
      - **Check for SPDX headers using pre-commit**
      
      commit 9d7ef44c3cfb72ca4c32e1c677d99259d10d4745
      Author: Russell Bryant <rbryant@redhat.com>
      Date:   Fri Jan 31 14:18:24 2025 -0500
      
          Add SPDX license headers to python source files
          
      This commit adds SPDX license headers to python source files as
      recommended to
      the project by the Linux Foundation. These headers provide a concise way
      that is
      both human and machine readable for communicating license information
      for each
      source file. It helps avoid any ambiguity about the license of the code
      and can
          also be easily used by tools to help manage license compliance.
          
      The Linux Foundation runs license scans against the codebase to help
      ensure
          we are in compliance with the licenses of the code we use, including
      dependencies. Having these headers in place helps that tool do its job.
          
          More information can be found on the SPDX site:
          
          - https://spdx.dev/learn/handling-license-info/
      
      Signed-off-by: default avatarRussell Bryant <rbryant@redhat.com>
      
      commit 5a1cf1cb3b80759131c73f6a9dddebccac039dea
      Author: Russell Bryant <rbryant@redhat.com>
      Date:   Fri Jan 31 14:36:32 2025 -0500
      
          Check for SPDX headers using pre-commit
      Signed-off-by: default avatarRussell Bryant <rbryant@redhat.com>
      
      ---------
      Signed-off-by: default avatarRussell Bryant <rbryant@redhat.com>
      e489ad7a
  7. 08 Jan, 2025 1 commit
  8. 07 Oct, 2024 1 commit
  9. 25 Mar, 2024 1 commit
  10. 16 Mar, 2024 1 commit
  11. 17 Feb, 2024 1 commit
    • jvmncs's avatar
      multi-LoRA as extra models in OpenAI server (#2775) · 8f36444c
      jvmncs authored
      how to serve the loras (mimicking the [multilora inference example](https://github.com/vllm-project/vllm/blob/main/examples/multilora_inference.py)):
      ```terminal
      $ export LORA_PATH=~/.cache/huggingface/hub/models--yard1--llama-2-7b-sql-lora-test/
      $ python -m vllm.entrypoints.api_server \
       --model meta-llama/Llama-2-7b-hf \
       --enable-lora \
       --lora-modules sql-lora=$LORA_PATH sql-lora2=$LORA_PATH
      ```
      the above server will list 3 separate values if the user queries `/models`: one for the base served model, and one each for the specified lora modules. in this case sql-lora and sql-lora2 point to the same underlying lora, but this need not be the case. lora config values take the same values they do in EngineArgs
      
      no work has been done here to scope client permissions to specific models
      8f36444c
  12. 23 Jan, 2024 1 commit