Initial commit
Some checks failed
Docker Build and Push / docker (push) Failing after 2m10s

This commit is contained in:
4paradigm
2026-07-24 15:17:23 +08:00
commit 780b5e1ff4
1445 changed files with 216416 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# coding=utf-8
# Adapted from llama.py
"""Inference-only Phi3 model code inherit from Llama.py"""
from vllm.model_executor.models.llama import LlamaForCausalLM
class Phi3ForCausalLM(LlamaForCausalLM):
packed_modules_mapping = {
"qkv_proj": [
"qkv_proj",
],
"gate_up_proj": [
"gate_up_proj",
],
}