forked from hwchase17/langchain-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
251 lines (243 loc) · 11.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>LangChain</title>
<!--favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Fontawesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<!-- Header Section -->
<header>
<nav class="navbar navbar-expand-md bg-light navbar-light fixed-top">
<div class="container">
<a href="#" class="navbar-brand">🦜️🔗 LangChain</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a href="#" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="features.html" class="nav-link">Features</a>
</li>
<li class="nav-item">
<a href="integrations.html" class="nav-link">Integrations</a>
</li>
<li class="nav-item">
<a href="#About" class="nav-link">About Us</a>
</li>
<li class="nav-item">
<a href="#Contact" class="nav-link">Contact</a>
</li>
<li class="nav-item">
<a href="https://blog.langchain.dev/" class="nav-link">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="hero-section" style="margin-top: 80px;">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h1>Unlock the Potential of Language Models</h1>
<p class="lead">With modular abstractions for language model components and customizable use-case specific chains, LangChain makes it easy to connect language models to data sources and enable them to interact with their environment.</p>
<a href="#Resources" class="btn btn-primary btn-lg mt-3">See Documentation</a>
</div>
<div class="col-lg-6">
<img src="img/header.png" alt="Hero Image" class="img-fluid">
</div>
</div>
</div>
</div>
</header>
<!-- End Header Section -->
<!-- Feature Section -->
<section id="Features" class="feature-section py-5">
<div class="container">
<div class="row gy-4 justify-content-center">
<div class="col-lg-4">
<div class="card h-100 border-0 shadow rounded-3">
<div class="card-body text-center">
<i class="fas fa-rocket fa-3x mb-4 icon-color"></i>
<h3 class="mb-3">Modular Components</h3>
<p class="card-text mb-0">LangChain provides modular abstractions for the components necessary to work with language models. These components are easy to use and can be integrated into your existing workflow, regardless of whether you are using the rest of the LangChain framework or not.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100 border-0 shadow rounded-3">
<div class="card-body text-center">
<i class="fas fa-cogs fa-3x mb-4 icon-color"></i>
<h3 class="mb-3">Customizable Use-Case Specific Chains</h3>
<p class="card-text mb-0">Chains are customizable and can be assembled in specific ways to accomplish a particular use case. These use-case specific chains provide a higher-level interface for people to easily get started with a specific use case.</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card h-100 border-0 shadow rounded-3">
<div class="card-body text-center">
<i class="fas fa-chart-line fa-3x mb-4 icon-color"></i>
<h3 class="mb-3">Data-Aware and Agentic Applications</h3>
<p class="card-text mb-0">LangChain enables you to build data-aware and agentic applications that leverage the full potential of language models. It connects language models to data sources and enables interactions.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Feature Section -->
<section id="Resources" class="bg-dim py-5">
<div class="container">
<h2 class="text-center mb-4">Resources</h2>
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h3 class="card-title">Conceptual Guide</h3>
<p class="card-text">Learn about the LangChain framework and its components.</p>
<a href="https://docs.langchain.com/docs/" class="btn btn-primary stretched-link">View Guide</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h3 class="card-title">Python Repo</h3>
<p class="card-text">Access the Python repository for the LangChain framework.</p>
<a href="https://github.com/hwchase17/langchain" class="btn btn-primary stretched-link">View Repo</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card shadow">
<div class="card-body">
<h3 class="card-title">JavaScript Repo</h3>
<p class="card-text">Access the JavaScript repository for the LangChain framework.</p>
<a href="https://github.com/hwchase17/langchainjs" class="btn btn-primary stretched-link">View Repo</a>
</div>
</div>
</div>
<div class="col-lg-6 mb-4">
<div class="card shadow">
<div class="card-body">
<h3 class="card-title">Python Documentation</h3>
<p class="card-text">Access the Python documentation for the LangChain framework.</p>
<a href="https://python.langchain.com/en/latest/" class="btn btn-primary stretched-link">View Documentation</a>
</div>
</div>
</div>
<div class="col-lg-6 mb-4">
<div class="card shadow">
<div class="card-body">
<h3 class="card-title">JavaScript Documentation</h3>
<p class="card-text">Access the JavaScript documentation for the LangChain framework.</p>
<a href="https://js.langchain.com/docs/" class="btn btn-primary stretched-link">View Documentation</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Integrations Section -->
<section id ="Integrations" class="integrations-section py-5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="img/integrations.png" alt="Integrations Image" class="img-fluid">
</div>
<div class="col-lg-6">
<h2>Seamless Integrations</h2>
<p>LangChain offers seamless integration with popular language model providers, embeddings, and vector stores. Our modular abstractions and customizable use-case specific chains make it easy to integrate with these providers and unlock the full potential of language models, no matter your use case or workflow.</p>
<a href="integrations.html" class="btn btn-primary btn-lg mt-3">Learn More</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="About" class="about-section py-5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>About LangChain</h2>
<p>LangChain is an open-source framework that enables developers and businesses to build data-aware and agentic applications powered by language models. Our modular components and customizable use-case specific chains make it easy to connect language models to data sources and enable them to interact with their environment. We believe in empowering people to leverage the full potential of language models, and we welcome contributions and feedback from the community to make LangChain a truly community-driven project.</p>
<a href="#" class="btn btn-primary btn-lg mt-3">Learn More</a>
</div>
<div class="col-lg-6">
<img src="img/about.png" alt="About Image" class="img-fluid">
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id = "Contact" class="contact-section py-5">
<div class="container text-center">
<div class="row">
<div class="col-lg-12">
<h2>Contact Us</h2>
<p>Please feel free to reach out to us with any questions or feedback you may have about LangChain. We are committed to providing the best experience possible and would love to hear from you. Please note that due to the high volume of inquiries we receive, we may not be able to respond to every message individually, but we value your input and will do our best to address any concerns. Thank you for your interest in LangChain.</p>
</div>
<!-- <div class="col-lg-6">
<form action="#" method="post">
<div class="form-group">
<input type="text" class="form-control mb-3" placeholder="Name">
<input type="email" class="form-control mb-3" placeholder="Email">
<input type="text" class="form-control mb-3" placeholder="Subject">
<textarea class="form-control mb-3" rows="5" placeholder="Message"></textarea>
<button type="submit" class="btn btn-primary">Send Message</button>
</div>
</form>
</div> -->
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="bg-dark text-white py-4 mt-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<h5>🦜️🔗 LangChain</h5>
<ul class="list-unstyled">
<li><a href="index.html#" class="text-white">Home</a></li>
<li><a href="index.html#About" class="text-white">Features</a></li>
<li><a href="index.html#Contact" class="text-white">Contact</a></li>
</ul>
</div>
<div class="col-md-6">
<h5>Social</h5>
<ul class="list-unstyled">
<li><a href="https://twitter.com/langchainai" class="text-white"><i class="fab fa-twitter"></i> Twitter</a></li>
<li><a href="https://github.com/hwchase17/langchain" class="text-white"><i class="fab fa-github"></i> Github</a></li>
<li><a href="https://discord.gg/6adMQxSpJS" class="text-white" ><i class="fab fa-discord"></i> Discord</a></li>
</ul>
</div>
</div>
<div class="row mt-3">
<div class="col">
<p class="text-center mb-0">© 2023 🦜️🔗 LangChain. All rights reserved.</p>
</div>
</div>
</div>
</footer>
</body>
</html>