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 19
19
- name : Compile llms.txt
20
20
run : |
21
21
cd docs
22
- python compile_llms .py
22
+ python compile_llms_txt .py
23
23
- name : Commit and push changes
24
24
run : |
25
25
git config --local user.email "[email protected] "
Original file line number Diff line number Diff line change 8
8
9
9
10
10
PREFERRED_MODELS = [
11
+ 'groq/deepseek-r1-distill-llama-70b' ,
12
+ 'deepseek/deepseek-chat' ,
13
+ 'deepseek/deepseek-coder' ,
14
+ 'deepseek/deepseek-reasoner' ,
11
15
'openai/gpt-4o' ,
12
16
'anthropic/claude-3-5-sonnet' ,
13
17
'openai/o1-preview' ,
Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ class LangGraphProvider:
40
40
module_name = 'langchain_openai' ,
41
41
dependency = 'langchain-openai>=0.3.0' ,
42
42
),
43
+ 'deepseek' : LangGraphProvider (
44
+ class_name = 'ChatDeepSeek' ,
45
+ module_name = 'langchain_deepseek_official' ,
46
+ dependency = 'langchain-deepseek-official>=0.1.0' ,
47
+ ),
43
48
'anthropic' : LangGraphProvider (
44
49
class_name = 'ChatAnthropic' ,
45
50
module_name = 'langchain_anthropic' ,
@@ -70,6 +75,11 @@ class LangGraphProvider:
70
75
module_name = 'langchain_ollama.chat_models' ,
71
76
dependency = 'langchain-ollama' ,
72
77
),
78
+ 'groq' : LangGraphProvider (
79
+ class_name = 'ChatGroq' ,
80
+ module_name = 'langchain_groq' ,
81
+ dependency = 'langchain-groq' ,
82
+ ),
73
83
}
74
84
75
85
You can’t perform that action at this time.
0 commit comments