Skip to content

Commit

Permalink
fix: params order for navigation engine (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
adeprez authored Sep 2, 2024
1 parent 6d2dedc commit 01450a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lavague-core/lavague/core/action_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ def __init__(
python_engine: BaseEngine = None,
navigation_control: BaseEngine = None,
llm: BaseLLM = None,
extraction_llm: Optional[BaseLLM] = None,
embedding: BaseEmbedding = None,
retriever: BaseHtmlRetriever = None,
prompt_template: PromptTemplate = NAVIGATION_ENGINE_PROMPT_TEMPLATE.prompt_template,
extractor: BaseExtractor = DynamicExtractor(),
time_between_actions: float = 1.5,
n_attempts: int = 5,
logger: AgentLogger = None,
extraction_llm: Optional[BaseLLM] = None,
):
if llm is None:
llm = get_default_context().llm
Expand Down

0 comments on commit 01450a5

Please sign in to comment.