File tree 3 files changed +6
-4
lines changed
examples/dynamic-lora-sidecar
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -43,4 +43,9 @@ The sidecar uses the vLLM server's API to load or unload adapters based on the c
43
43
```
44
44
Do not use subPath, since configmap updates are not reflected in the file
45
45
46
- [deployment]: deployment.yaml
46
+ [deployment]: deployment.yaml
47
+
48
+ # # Screenshots
49
+ ! [lora-adapter-syncer](screenshots/lora-syncer-sidecar.png)
50
+ ! [config map change](screenshots/configmap-change.png)
51
+ ! [vllm-logs](screenshots/vllm-logs.png)
Original file line number Diff line number Diff line change 1
1
aiohttp == 3.10.10
2
2
pyyaml == 6.0.2
3
3
requests == 2.32.3
4
- watchdog == 5.0.3
5
4
watchfiles == 0.24.0
Original file line number Diff line number Diff line change @@ -55,8 +55,6 @@ def config(self):
55
55
if c is None :
56
56
c = {}
57
57
c = c .get ("vLLMLoRAConfig" ,{})
58
- config_name = c .get ("name" ,"" )
59
- logging .info (f"loaded vLLMLoRAConfig { config_name } from { CONFIG_MAP_FILE } " )
60
58
return c
61
59
except Exception as e :
62
60
logging .error (f"cannot load config { CONFIG_MAP_FILE } { e } " )
You can’t perform that action at this time.
0 commit comments