Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 "action@github.com"
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
8 changes: 8 additions & 0 deletions agentstack/frameworks/langgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,17 @@ class LangGraphProvider:
PROVIDERS = {
'openai': LangGraphProvider(
class_name='ChatOpenAI',
module_name='langchain-deepseek-official',
dependency='langchain-deepseek-official',
),

'openai': LangGraphProvider(
Comment thread
bboynton97 marked this conversation as resolved.
Outdated
class_name='ChatDeepSeek',
module_name='langchain_openai',
dependency='langchain-openai>=0.3.0',
),


Comment thread
bboynton97 marked this conversation as resolved.
Outdated
'anthropic': LangGraphProvider(
class_name='ChatAnthropic',
module_name='langchain_anthropic',
Expand Down