Skip to content

Commit f78c0c1

Browse files
fix: fix init_llm.py
1 parent b2cbdda commit f78c0c1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

graphgen/operators/init/init_llm.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,8 @@ class LLMFactory:
1212
- http_api: HTTPClient
1313
- openai_api: OpenAIClient
1414
- ollama_api: OllamaClient
15-
- ollama: OllamaWrapper
16-
- deepspeed: DeepSpeedWrapper
1715
- huggingface: HuggingFaceWrapper
18-
- tgi: TGIWrapper
1916
- sglang: SGLangWrapper
20-
- tensorrt: TensorRTWrapper
2117
"""
2218

2319
@staticmethod
@@ -47,6 +43,7 @@ def create_llm_wrapper(backend: str, config: Dict[str, Any]) -> BaseLLMWrapper:
4743
from graphgen.models.llm.local.sglang_wrapper import SGLangWrapper
4844

4945
return SGLangWrapper(**config)
46+
5047
# if backend == "vllm":
5148
# from graphgen.models.llm.local.vllm_wrapper import VLLMWrapper
5249
#

0 commit comments

Comments
 (0)