Skip to content
Snippets Groups Projects
Commit 79bbfcd2 authored by Ismail Ashraq's avatar Ismail Ashraq
Browse files

lint fix

parent a5f0c254
No related branches found
No related tags found
No related merge requests found
...@@ -110,9 +110,9 @@ class LayerConfig: ...@@ -110,9 +110,9 @@ class LayerConfig:
llm_class = getattr(llm_module, llm_data["class"]) llm_class = getattr(llm_module, llm_data["class"])
# Instantiate the LLM class with the provided model name # Instantiate the LLM class with the provided model name
llm = llm_class(name=llm_data["model"]) llm = llm_class(name=llm_data["model"])
route_data["llm"] = ( route_data[
llm # Reassign the instantiated llm object back to route_data "llm"
) ] = llm # Reassign the instantiated llm object back to route_data
# Dynamically create the Route object using the remaining route_data # Dynamically create the Route object using the remaining route_data
route = Route(**route_data) route = Route(**route_data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment