-
Notifications
You must be signed in to change notification settings - Fork 233
/
Copy pathhome_en.html
596 lines (579 loc) · 23.1 KB
/
home_en.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
<!--
Based on https://github.com/squidfunk/mkdocs-material/blob/master/src/overrides/home.html
-->
{% extends "main.html" %}
<!-- Render hero under tabs -->
{% block tabs %} {{ super() }}
<!-- Additional styles for landing page -->
<style>
/* Application header should be static for the landing page */
.md-header {
position: initial;
}
/* Remove spacing, as we cannot hide it completely */
.md-main__inner {
margin: 0;
}
/* Hide main content for now */
.md-content {
display: none;
}
/* Hide table of contents */
@media screen and (min-width: 60em) {
.md-sidebar--secondary {
display: none;
}
}
/* Hide navigation */
@media screen and (min-width: 76.25em) {
.md-sidebar--primary {
display: none;
}
}
</style>
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<header
class="bg-gradient-to-r from-gray-900 to-cyan-700 pb-20 pt-32 text-white">
<div class="container mx-auto px-6">
<div class="flex flex-col items-center gap-10 md:flex-row">
<div class="mb-10 md:mb-0 md:w-1/2">
<h1 class="mb-6 text-4xl font-bold md:text-6xl">
Generative AI Use Cases (GenU)
</h1>
<p class="mb-8 text-xl">
A collection of business use cases for using generative AI safely
</p>
<div class="flex gap-4">
<a
href="ABOUT.html"
class="inline-flex items-center rounded-full bg-orange-500 px-8 py-3 text-sm hover:bg-orange-600">
Get Started
</a>
<a
href="https://github.com/aws-samples/generative-ai-use-cases"
class="inline-flex items-center rounded-full border border-orange-500 px-8 py-3 text-sm text-orange-500 hover:bg-orange-600 hover:text-white">
<i class="fab fa-github mr-2"></i>GitHub
</a>
</div>
</div>
<div class="md:w-1/2">
<img
src="../assets/images/sc_lp_en.png"
alt="GenU Screenshot"
class="rounded-lg shadow-xl" />
</div>
</div>
</div>
</header>
<section id="features" class="py-20">
<div class="container mx-auto px-6">
<h2 class="mb-16 text-center text-3xl font-bold">Main Features</h2>
<div class="grid grid-cols-1 gap-12 md:grid-cols-3">
<div class="text-center">
<div
class="mx-auto mb-6 flex h-16 w-16 items-center justify-center rounded-full bg-orange-100">
<i class="fas fa-robot text-2xl text-orange-500"></i>
</div>
<h3 class="mb-4 text-xl font-semibold">Multiple Use Cases</h3>
<p class="text-sm text-gray-600">
Chat, RAG, text generation, and more, covering various business
scenarios
</p>
</div>
<div class="text-center">
<div
class="mx-auto mb-6 flex h-16 w-16 items-center justify-center rounded-full bg-orange-100">
<i class="fas fa-shield-alt text-2xl text-orange-500"></i>
</div>
<h3 class="mb-4 text-xl font-semibold">Secure Implementation</h3>
<p class="text-sm text-gray-600">
Secure AI use base using Amazon Bedrock
</p>
</div>
<div class="text-center">
<div
class="mx-auto mb-6 flex h-16 w-16 items-center justify-center rounded-full bg-orange-100">
<i class="fas fa-code text-2xl text-orange-500"></i>
</div>
<h3 class="mb-4 text-xl font-semibold">Customizable</h3>
<p class="text-sm text-gray-600">
Add custom features with the use case builder
</p>
</div>
</div>
</div>
</section>
<section id="usecases" class="bg-gray-50 py-20">
<div class="container mx-auto px-6">
<h2 class="mb-16 text-center text-3xl font-bold">Use Cases</h2>
<div class="swiper usecase-swiper">
<div class="swiper-wrapper pb-10">
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_chat.gif"
alt="Chat"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Chat</h3>
<p class="text-sm text-gray-600">
Large language models (LLM) can interact with each other in a chat
format. Thanks to the platform that allows LLM to directly
interact with each other, we can quickly respond to new use cases
and detailed use cases. It is also effective as a verification
environment for prompt engineering.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_usecase_builder.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Use Case Builder</h3>
<p class="text-sm text-gray-600">
This feature allows you to create your own use cases by describing
prompt templates in natural language. Since the use case screen is
automatically generated from the prompt template, there is no need
to change code or customize it.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_rag.gif"
alt="RAG Chat"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">RAG Chat</h3>
<p class="text-sm text-gray-600">
RAG is a technique that allows LLM to generate answers based on
evidence by providing the latest information or domain knowledge
that LLM is not good at. For example, if you pass in internal
documents to LLM, you can automate internal inquiries. This
repository uses Amazon Kendra or Knowledge Bases to get
information.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_agent.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Agent Chat</h3>
<p class="text-sm text-gray-600">
Agent is a technique that allows LLM to perform various tasks by
connecting to API. This solution implements an Agent that searches
for and answers necessary information using a search engine as a
sample implementation.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_flow_chat.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Flow Chat</h3>
<p class="text-sm text-gray-600">
Amazon Bedrock Flows allows you to create workflows by connecting
prompts, foundation models, and other AWS services. The Flow chat
use case allows you to use a chat that selects and executes a
pre-created flow.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_voice_chat.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Voice Chat</h3>
<p class="text-sm text-gray-600">
In Voice Chat, you can have a bidirectional voice chat with
generative AI. Similar to natural conversation, you can also
interrupt and speak while the AI is talking. Also, by setting a
system prompt, you can have voice conversations with AI that has
specific roles.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_summarize.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Summarize</h3>
<p class="text-sm text-gray-600">
LLM is good at summarizing large amounts of text. Not only can it
summarize text, but it can also retrieve necessary information in
an interactive form by providing the text as context. For example,
you can retrieve information such as "What are the conditions for
XXX?" and "What is the amount for YYY?" by reading a contract.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_writer.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Writing</h3>
<p class="text-sm text-gray-600">
LLM can assist with writing and proofreading articles. In addition
to checking for typos and errors, it can suggest improvements in
the flow and content of the article, and provide an objective view
from a more neutral perspective. It is expected to improve the
quality by checking points that the user may not have noticed
themselves before showing it to others.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_translate.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Translation</h3>
<p class="text-sm text-gray-600">
LLM that has learned multiple languages can also translate. In
addition to just translating, it is possible to reflect various
specified context information such as casualness and target layer
into translation. For example, if you translate a contract, you
can translate it into multiple languages.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_web_content.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Web Content Extraction</h3>
<p class="text-sm text-gray-600">
LLM can extract web content such as blogs and documents. It
removes unnecessary information and formats it as a complete
article. The extracted content can be used in other use cases such
as summarizing and translating.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_generate_image.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Image Generation</h3>
<p class="text-sm text-gray-600">
LLM can generate images based on text and images. It can help you
visualize your ideas and improve your design work.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_generate_video.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Video Generation</h3>
<p class="text-sm text-gray-600">
LLM can generate videos based on text. It can help you visualize
your ideas and improve your design work.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_video_analyzer.gif"
alt="Text Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Video Analysis</h3>
<p class="text-sm text-gray-600">
LLM can analyze videos by inputting not only text but also images.
This feature allows you to analyze videos by inputting the image
frames and text as input.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="rounded-lg bg-white p-6 shadow-lg">
<img
src="../assets/images/usecase_generate_diagram.gif"
alt="Diagram Generation"
class="mb-4 w-full rounded-lg" />
<h3 class="mb-2 text-xl font-semibold">Diagram Generation</h3>
<p class="text-sm text-gray-600">
LLM can generate diagrams such as flowcharts, sequence diagrams,
and mind maps from natural language descriptions, documents, and
code. It can help you visualize complex relationships and
understand them more efficiently.
</p>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<section id="customers" class="py-20">
<div class="container mx-auto px-6">
<h2 class="mb-16 text-center text-3xl font-bold">Customers</h2>
<div class="swiper customer-swiper">
<div class="swiper-wrapper pb-10">
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="https://aws.amazon.com/jp/solutions/case-studies/yasashii-te/">
<img
src="../assets/images/cases/yasashiite_logo.png"
alt="やさしい手"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
GenU helped us achieve value-added to users and improved the
efficiency of our employees. We will continue to evolve from
"Sukisuku to Wakuwaku" as our employees' "everyday work" becomes
more enjoyable.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="https://aws.amazon.com/jp/solutions/case-studies/takihyo/">
<img
src="../assets/images/cases/TAKIHYO_logo.png"
alt="タキヒヨー"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
GenU helped us achieve value-added to users and improved the
efficiency of our employees. We will continue to evolve from
"Sukisuku to Wakuwaku" as our employees' "everyday work" becomes
more enjoyable.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/salsonido_case.png">
<img
src="../assets/images/cases/salsonido_logo.png"
alt="サルソニード"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
GenU helped us achieve value-added to users and improved the
efficiency of our employees. We will continue to evolve from
"Sukisuku to Wakuwaku" as our employees' "everyday work" becomes
more enjoyable.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/tamura-ss_case.png">
<img
src="../assets/images/cases/tamura-ss_logo.png"
alt="タムラ製作所"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
The application samples published by AWS on Github are rich in
immediately testable functions, so it was easy to select the
functions that fit our needs, and we were able to shorten the
development time of the final system.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/jdsc_case.png">
<img
src="../assets/images/cases/jdsc_logo.png"
alt="JDSC"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
Amazon Bedrock allows us to use data securely and LLM. In
addition, we were able to improve speed and accuracy while
reducing costs by switching to the optimal model for our needs.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="https://cloudpack.jp/casestudy/302.html?_gl=1*17hkazh*_gcl_au*ODA5MDk3NzI0LjE3MTM0MTQ2MDU">
<img
src="../assets/images/cases/iret_logo.png"
alt="アイレット株式会社"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
To accumulate and systematize the knowledge of the company for the
use of generative AI, we developed a use case site using the
Generative AI Use Cases published by AWS. The company Iret
supported the design, construction, and development of this
project.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/idealog_case.png">
<img
src="../assets/images/cases/idealog_logo.jpg"
alt="アイデアログ"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
We feel that we can improve business efficiency even more than
traditional generative AI tools. Since we are using Amazon
Bedrock, we are also secure in terms of security.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/estyle_case.png">
<img
src="../assets/images/cases/estyle_logo.png"
alt="エスタイル"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
GenU helped us build a generative AI environment in a short period
of time and promote knowledge sharing within the company.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/meidensha_case.png">
<img
src="../assets/images/cases/meidensha_logo.svg"
alt="明電舎"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
Amazon Bedrock and Amazon Kendra allowed us to build a generative
AI environment quickly and securely. We are also contributing to
improving the efficiency of our employees by automatically
generating meeting minutes and searching for internal information.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="../assets/images/cases/st-grp_case.png">
<img
src="../assets/images/cases/st-grp_logo.jpg"
alt="三協立山株式会社"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
Amazon Kendra allowed us to quickly search for information buried
in the company. GenU helped us quickly provide the features we
wanted, such as automatically generating meeting minutes.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="https://aws.amazon.com/jp/solutions/case-studies/oisix/">
<img
src="../assets/images/cases/oisixradaichi_logo.png"
alt="オイシックス・ラ・大地株式会社"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
GenU helped us structure resources, project structure, external
support, and talent development. This helped us understand the
image of generative AI in the company.
</p>
</a>
</div>
<div class="swiper-slide">
<a
class="flex flex-col items-center"
href="https://aws.amazon.com/jp/solutions/case-studies/san-a/">
<img
src="../assets/images/cases/san-a_logo.png"
alt="株式会社サンエー"
class="mb-4 h-16 object-contain" />
<p class="text-center text-sm text-gray-600">
Amazon Bedrock helped us accelerate the migration of our
company-specific environment to the cloud.
</p>
</a>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<script>
new Swiper('.usecase-swiper', {
slidesPerView: 1,
spaceBetween: 30,
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
breakpoints: {
640: {
slidesPerView: 2,
},
1024: {
slidesPerView: 3,
},
},
});
new Swiper('.customer-swiper', {
slidesPerView: 1,
spaceBetween: 30,
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
breakpoints: {
640: {
slidesPerView: 2,
},
1024: {
slidesPerView: 3,
},
},
});
</script>
<footer class="text-center text-gray-600">
このページは、GenU summit-2024
ブランチのウェブサイト作成ユースケースで作成されました。
</footer>
{% endblock %}
<!-- Content -->
{% block content %}{% endblock %}