Skip to content

Commit

Permalink
Fix: typo for lmdeploy_wrapper (#171)
Browse files Browse the repository at this point in the history
* [Fix] Fix typo for lmdeploy_wrapper

* [Fix] Remove lmdepoly_wrapper
  • Loading branch information
fanqiNO1 committed Jun 13, 2024
1 parent 264ae5c commit ac2190d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/internlm2_agent_web_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from lagent.actions import ActionExecutor, ArxivSearch, IPythonInterpreter
from lagent.agents.internlm2_agent import INTERPRETER_CN, META_CN, PLUGIN_CN, Internlm2Agent, Internlm2Protocol
from lagent.llms.lmdepoly_wrapper import LMDeployClient
from lagent.llms.lmdeploy_wrapper import LMDeployClient
from lagent.llms.meta_template import INTERNLM2_META as META
from lagent.schema import AgentStatusCode

Expand Down
2 changes: 1 addition & 1 deletion lagent/llms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .base_api import BaseAPIModel
from .base_llm import BaseModel
from .huggingface import HFTransformer, HFTransformerCasualLM, HFTransformerChat
from .lmdepoly_wrapper import LMDeployClient, LMDeployPipeline, LMDeployServer
from .lmdeploy_wrapper import LMDeployClient, LMDeployPipeline, LMDeployServer
from .meta_template import INTERNLM2_META
from .openai import GPTAPI
from .vllm_wrapper import VllmModel
Expand Down
File renamed without changes.

0 comments on commit ac2190d

Please sign in to comment.