Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compile-llms-txt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Compile llms.txt
run: |
cd docs
python compile_llms.py
python compile_llms_txt.py
- name: Commit and push changes
run: |
git config --local user.email "[email protected]"
Expand Down
4 changes: 4 additions & 0 deletions agentstack/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@


PREFERRED_MODELS = [
'groq/deepseek-r1-distill-llama-70b',
'deepseek/deepseek-chat',
'deepseek/deepseek-coder',
'deepseek/deepseek-reasoner',
'openai/gpt-4o',
'anthropic/claude-3-5-sonnet',
'openai/o1-preview',
Expand Down
10 changes: 10 additions & 0 deletions agentstack/frameworks/langgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ class LangGraphProvider:
module_name='langchain_openai',
dependency='langchain-openai>=0.3.0',
),
'deepseek': LangGraphProvider(
class_name='ChatDeepSeek',
module_name='langchain_deepseek_official',
dependency='langchain-deepseek-official>=0.1.0',
),
'anthropic': LangGraphProvider(
class_name='ChatAnthropic',
module_name='langchain_anthropic',
Expand Down Expand Up @@ -66,6 +71,11 @@ class LangGraphProvider:
module_name='langchain_ollama.chat_models',
dependency='langchain-ollama',
),
'groq': LangGraphProvider(
class_name='ChatGroq',
module_name='langchain_groq',
dependency='langchain-groq',
),
}


Expand Down
Loading