Skip to content

Commit 7057f0c

Browse files
committed
groq langgraph provider
1 parent 35122d8 commit 7057f0c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

agentstack/frameworks/langgraph.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,11 @@ class LangGraphProvider:
3636
module_name='langchain_openai',
3737
dependency='langchain-openai>=0.3.0',
3838
),
39-
4039
'deepseek': LangGraphProvider(
4140
class_name='ChatDeepSeek',
4241
module_name='langchain_deepseek_official',
4342
dependency='langchain-deepseek-official>=0.1.0',
4443
),
45-
4644
'anthropic': LangGraphProvider(
4745
class_name='ChatAnthropic',
4846
module_name='langchain_anthropic',
@@ -73,6 +71,11 @@ class LangGraphProvider:
7371
module_name='langchain_ollama.chat_models',
7472
dependency='langchain-ollama',
7573
),
74+
'groq': LangGraphProvider(
75+
class_name='ChatGroq',
76+
module_name='langchain_groq',
77+
dependency='langchain-groq',
78+
),
7679
}
7780

7881

0 commit comments

Comments
 (0)