We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35122d8 commit 7057f0cCopy full SHA for 7057f0c
agentstack/frameworks/langgraph.py
@@ -36,13 +36,11 @@ class LangGraphProvider:
36
module_name='langchain_openai',
37
dependency='langchain-openai>=0.3.0',
38
),
39
-
40
'deepseek': LangGraphProvider(
41
class_name='ChatDeepSeek',
42
module_name='langchain_deepseek_official',
43
dependency='langchain-deepseek-official>=0.1.0',
44
45
46
'anthropic': LangGraphProvider(
47
class_name='ChatAnthropic',
48
module_name='langchain_anthropic',
@@ -73,6 +71,11 @@ class LangGraphProvider:
73
71
module_name='langchain_ollama.chat_models',
74
72
dependency='langchain-ollama',
75
+ 'groq': LangGraphProvider(
+ class_name='ChatGroq',
76
+ module_name='langchain_groq',
77
+ dependency='langchain-groq',
78
+ ),
79
}
80
81
0 commit comments