diff --git a/.github/workflows/compile-llms-txt.yml b/.github/workflows/compile-llms-txt.yml index 6859366e..d2043861 100644 --- a/.github/workflows/compile-llms-txt.yml +++ b/.github/workflows/compile-llms-txt.yml @@ -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" diff --git a/agentstack/cli/cli.py b/agentstack/cli/cli.py index 6fc36742..a1ce51ff 100644 --- a/agentstack/cli/cli.py +++ b/agentstack/cli/cli.py @@ -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', diff --git a/agentstack/frameworks/langgraph.py b/agentstack/frameworks/langgraph.py index d3e6a38e..87c98d5e 100644 --- a/agentstack/frameworks/langgraph.py +++ b/agentstack/frameworks/langgraph.py @@ -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', @@ -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', + ), }