Skip to content

Commit

Permalink
Fix import in rl
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablyFaiz committed Aug 28, 2024
1 parent 618a5ad commit 90db298
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rl/llm/engines/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
from tqdm.contrib.concurrent import thread_map

import rl.utils.io
from rl.llm.config import EngineFeature, LLMConfig
from rl.llm.engines.core import (
ChatInput,
EngineFeature,
InferenceEngine,
InferenceInput,
InferenceOutput,
LLMConfig,
apply_chat_template,
register_engine,
)
Expand Down
3 changes: 2 additions & 1 deletion rl/llm/engines/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
import tqdm

import rl.utils.io
from rl.llm.config import EngineFeature, LLMConfig
from rl.llm.engines.core import (
EngineFeature,
InferenceEngine,
InferenceInput,
InferenceOutput,
LLMConfig,
apply_chat_template,
register_engine,
)
Expand Down

0 comments on commit 90db298

Please sign in to comment.