├── .gitignore
├── README.md
├── features.html
├── index.html
└── integrations.html
/.gitignore:
--------------------------------------------------------------------------------
1 | # Local Netlify folder
2 | .netlify
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # langchain-pages
2 |
--------------------------------------------------------------------------------
/features.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
17 |
18 | 🦜️🔗 LangChain Features
19 |
20 | This page contains status indicators about the various features LangChain provides.
21 |
22 |
23 | Prompt Templates
24 |
25 |
26 | Feature |
27 | Python |
28 | TypeScript |
29 |
30 | Prompt Template | ✅ | ✅ |
31 | Few Shot Prompt Template | ✅ | ✅ |
32 | Output Parsers | ✅ | ✅ |
33 | Example Selectors | ✅ | ✅ |
34 |
35 |
36 | Text Splitters
37 |
38 |
39 | Feature |
40 | Python |
41 | TypeScript |
42 |
43 | Character Text Splitter | ✅ | ✅ |
44 | Recursive Character Text Splitter | ✅ | ✅ |
45 | Markdown Text Splitter | ✅ | ✅ |
46 |
47 |
48 | Chains
49 |
50 |
51 | Feature |
52 | Python |
53 | TypeScript |
54 |
55 | LLM Chain | ✅ | ✅ |
56 | Stuff Combine Documents Chain | ✅ | ✅ |
57 | Map Reduce Combine Documents Chain | ✅ | ✅ |
58 | Refine Combine Documents Chain | ✅ | ✅ |
59 | Map Rerank Combine Documents Chain | ✅ | ❌ |
60 | Chat Vector DB Chain | ✅ | ✅ |
61 | Vector DB QA Chain | ✅ | ✅ |
62 | Analyze Document Chain | ✅ | ✅ |
63 | Question Answering Chains | ✅ | ✅ |
64 | Summarization Chains | ✅ | ✅ |
65 | Question Answering With Sources Chains | ✅ | ❌ |
66 | SQL Database Chain | ✅ | ✅ |
67 | API Chain | ✅ | ❌ |
68 | Transformation Chain | ✅ | ❌ |
69 | Constitutional Chain | ✅ | ✅ |
70 | Conversational Chain | ✅ | ✅ |
71 | Graph QA Chain | ✅ | ❌ |
72 | HyDE Chain | ✅ | ❌ |
73 | LLM Bash Chain | ✅ | ❌ |
74 | LLM Math Chain | ✅ | ❌ |
75 | PAL Chain | ✅ | ❌ |
76 | LLM Requests Chain | ✅ | ❌ |
77 | Moderation Chain | ✅ | ✅ |
78 | Sequential Chain | ✅ | ✅ |
79 | Simple Sequential Chain | ✅ | ✅ |
80 |
81 |
82 | Agents
83 |
84 |
85 | Feature |
86 | Python |
87 | TypeScript |
88 |
89 | zero-shot-react-description | ✅ | ✅ |
90 | chat-zero-shot-react-description | ✅ | ✅ |
91 | self-ask-with-search | ✅ | ❌ |
92 | react-docstore | ✅ | ❌ |
93 | conversational-react-description | ✅ | ❌ |
94 | chat-conversational-react-description | ✅ | ✅ |
95 |
96 | Memory
97 |
98 |
99 | Feature |
100 | Python |
101 | TypeScript |
102 |
103 | Buffer Memory | ✅ | ✅ |
104 | Buffer Window Meory | ✅ | ✅ |
105 | Summary Memory | ✅ | ✅ |
106 | Entity Memory | ✅ | ❌ |
107 | Summary Buffer Memory | ✅ | ❌ |
108 | Knowledge Graph Memory | ✅ | ❌ |
109 |
110 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | LANG CHAIN 🦜️🔗
Official Home Page
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | |
14 |
15 | |
18 |
19 |
20 | |
23 |
24 | |
27 |
28 |
29 |
30 | |
32 |
33 | |
35 |
36 |
37 |
38 |
39 | |
41 |
42 | |
45 |
46 |
47 | |
49 |
50 | |
53 |
54 |
55 | |
57 |
58 | |
61 |
62 |
63 |
64 |
65 |
66 |
67 | If you have any comments about our WEB page, you can
68 | write us at the address shown above. However, due to
69 | the limited number of personnel in our corporate office, we are unable to
70 | provide a direct response.
71 |
72 | Copyright © 2023-2023 LangChain Inc.
73 |
74 |
--------------------------------------------------------------------------------
/integrations.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
17 |
18 | 🦜️🔗 LangChain Integrations
19 |
20 | This page contains status indicators and links to the various types of integrations LangChain provides.
21 |
22 | LLMs
23 |
24 |
25 | LLM Provider |
26 | Python |
27 | TypeScript |
28 |
29 |
30 | OpenAI |
31 | ✅ |
32 | ✅ |
33 |
34 |
35 | Cohere |
36 | ✅ |
37 | ✅ |
38 |
39 |
40 | Hugging Face Hub |
41 | ✅ |
42 | ✅ |
43 |
44 |
45 | AI21 Labs |
46 | ✅ |
47 | ❌ |
48 |
49 |
50 | Aleph Alpha |
51 | ✅ |
52 | ❌ |
53 |
54 |
55 | Anthropic |
56 | ✅ |
57 | ✅ |
58 |
59 |
60 | Azure OpenAI |
61 | ✅ |
62 | ❌ |
63 |
64 |
65 | Banana |
66 | ✅ |
67 | ❌ |
68 |
69 |
70 | Cerebrium AI |
71 | ✅ |
72 | ❌ |
73 |
74 |
75 | DeepInfra |
76 | ✅ |
77 | ❌ |
78 |
79 |
80 | Forefront AI |
81 | ✅ |
82 | ❌ |
83 |
84 |
85 | Goose AI |
86 | ✅ |
87 | ❌ |
88 |
89 |
90 | Manifest |
91 | ✅ |
92 | ❌ |
93 |
94 |
95 | Modal |
96 | ✅ |
97 | ❌ |
98 |
99 |
100 | Petals |
101 | ✅ |
102 | ❌ |
103 |
104 |
105 | Self-Hosted (via RunHouse) |
106 | ✅ |
107 | ❌ |
108 |
109 |
110 | Stochastic AI |
111 | ✅ |
112 | ❌ |
113 |
114 |
115 | Writer |
116 | ✅ |
117 | ❌ |
118 |
119 |
120 | Replicate |
121 | ✅ |
122 | ✅ |
123 |
124 |
125 | Embeddings
126 |
127 |
128 | Embedding Provider |
129 | Python |
130 | TypeScript |
131 |
132 |
133 | OpenAI |
134 | ✅ |
135 | ✅ |
136 |
137 |
138 | Cohere |
139 | ✅ |
140 | ✅ |
141 |
142 |
143 | Hugging Face Hub |
144 | ✅ |
145 | ✅ |
146 |
147 |
148 | TensorFlow Hub |
149 | ✅ |
150 | ✅ |
151 |
152 |
153 | Instruct Embeddings |
154 | ✅ |
155 | ❌ |
156 |
157 |
158 | Self Hosted (via RunHouse) Embeddings |
159 | ✅ |
160 | ❌ |
161 |
162 |
163 | VectorStores
164 |
165 |
166 | VectorStore Provider |
167 | Python |
168 | TypeScript |
169 |
170 |
171 | Chroma |
172 | ✅ |
173 | ✅ |
174 |
175 |
176 | Pinecone |
177 | ✅ |
178 | ✅ |
179 |
180 |
181 | Weaviate |
182 | ✅ |
183 | ✅ |
184 |
185 |
186 | ElasticSearch |
187 | ✅ |
188 | ❌ |
189 |
190 |
191 | FAISS |
192 | ✅ |
193 | ❌ |
194 |
195 |
196 | Milvus |
197 | ✅ |
198 | ✅ |
199 |
200 |
201 | OpenSearch |
202 | ✅ |
203 | ✅ |
204 |
205 |
206 | Qdrant |
207 | ✅ |
208 | ❌ |
209 |
210 |
211 | HNSWLib |
212 | ❌ |
213 | ✅ |
214 |
215 |
216 | Supabase |
217 | ❌ |
218 | ✅ |
219 |
220 |
221 | Prisma |
222 | ❌ |
223 | ✅ |
224 |
225 |
226 |
227 |
228 |
--------------------------------------------------------------------------------