Commit ·
bc9c8da
1
Parent(s): 642e564
Update LLM model in self-consistency function from Gemma 3-12b to 3-27b.
Browse files
src/job_writing_agent/nodes/selfconsistency.py
CHANGED
|
@@ -31,7 +31,7 @@ def self_consistency_vote(state: AppState) -> AppState:
|
|
| 31 |
# Create LLM inside function (lazy initialization)
|
| 32 |
llm_factory = LLMFactory()
|
| 33 |
precise_llm = llm_factory.create_langchain(
|
| 34 |
-
model="google/gemma-3-
|
| 35 |
)
|
| 36 |
|
| 37 |
variations_data = state.get("variations", {"variations": []})
|
|
|
|
| 31 |
# Create LLM inside function (lazy initialization)
|
| 32 |
llm_factory = LLMFactory()
|
| 33 |
precise_llm = llm_factory.create_langchain(
|
| 34 |
+
model="google/gemma-3-27b-it:free", provider="openrouter", temperature=0.1
|
| 35 |
)
|
| 36 |
|
| 37 |
variations_data = state.get("variations", {"variations": []})
|