Skip to content

Commit 309950f

Browse files
authored
Merge pull request #249 from AgentOps-AI/add_new_models
Add deepseek using groq & deepseek-ai, fixed path for llms.txt workflow
2 parents 04302cc + 7057f0c commit 309950f

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.github/workflows/compile-llms-txt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Compile llms.txt
2020
run: |
2121
cd docs
22-
python compile_llms.py
22+
python compile_llms_txt.py
2323
- name: Commit and push changes
2424
run: |
2525
git config --local user.email "[email protected]"

agentstack/cli/cli.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99

1010
PREFERRED_MODELS = [
11+
'groq/deepseek-r1-distill-llama-70b',
12+
'deepseek/deepseek-chat',
13+
'deepseek/deepseek-coder',
14+
'deepseek/deepseek-reasoner',
1115
'openai/gpt-4o',
1216
'anthropic/claude-3-5-sonnet',
1317
'openai/o1-preview',

agentstack/frameworks/langgraph.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ class LangGraphProvider:
4040
module_name='langchain_openai',
4141
dependency='langchain-openai>=0.3.0',
4242
),
43+
'deepseek': LangGraphProvider(
44+
class_name='ChatDeepSeek',
45+
module_name='langchain_deepseek_official',
46+
dependency='langchain-deepseek-official>=0.1.0',
47+
),
4348
'anthropic': LangGraphProvider(
4449
class_name='ChatAnthropic',
4550
module_name='langchain_anthropic',
@@ -70,6 +75,11 @@ class LangGraphProvider:
7075
module_name='langchain_ollama.chat_models',
7176
dependency='langchain-ollama',
7277
),
78+
'groq': LangGraphProvider(
79+
class_name='ChatGroq',
80+
module_name='langchain_groq',
81+
dependency='langchain-groq',
82+
),
7383
}
7484

7585

0 commit comments

Comments
 (0)