File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 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] "
Original file line number Diff line number Diff line change 88
99
1010PREFERRED_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' ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments