-
Notifications
You must be signed in to change notification settings - Fork 1
/
openAI_api_apps.html
2577 lines (2549 loc) · 273 KB
/
openAI_api_apps.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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
<head>
<meta charset="utf-8" />
<meta name="generator" content="quarto-1.4.288" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="이광춘" />
<meta name="description" content="OpenAI API 환경을 갖춘 후에 본격적인 응용프로그램 개발을 시작해보자." />
<title>chatGPT – 챗GPT</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
/* CSS for syntax highlighting */
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
pre.numberSource code > span
{ position: relative; left: -4em; counter-increment: source-line; }
pre.numberSource code > span > a:first-child::before
{ content: counter(source-line);
position: relative; left: -1em; text-align: right; vertical-align: baseline;
border: none; display: inline-block;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
}
pre.numberSource { margin-left: 3em; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
pre > code.sourceCode > span > a:first-child::before { text-decoration: underline; }
}
</style>
<!-- htmldependencies:E3FAD763 -->
<script id="quarto-search-options" type="application/json">{
"location": "navbar",
"copy-button": false,
"collapse-after": 3,
"panel-placement": "end",
"type": "overlay",
"limit": 20,
"keyboard-shortcut": [
null
],
"language": {
"search-no-results-text": "일치 없음",
"search-matching-documents-text": "일치된 문서",
"search-copy-link-title": "검색 링크 복사",
"search-hide-matches-text": "추가 검색 결과 숨기기",
"search-more-match-text": "추가 검색결과",
"search-more-matches-text": "추가 검색결과",
"search-clear-button-title": "제거",
"search-detached-cancel-button-title": "취소",
"search-submit-button-title": "검색",
"search-label": "검색"
}
}</script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-229551680-1', 'auto');
ga('send', {
hitType: 'pageview',
'anonymizeIp': true,
});
</script>
<link rel="stylesheet" href="css/quarto.css" />
</head>
<body>
<div id="quarto-search-results"></div>
<header id="quarto-header" class="headroom fixed-top">
<nav class="navbar navbar-expand-lg navbar-dark ">
<div class="navbar-container container-fluid">
<div class="navbar-brand-container mx-auto">
<a class="navbar-brand" href="/index.html">
<span class="navbar-title">chatGPT</span>
</a>
</div>
<div id="quarto-search" class="" title="검색"></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="탐색 전환"
onclick="if (window.quartoToggleHeadroom) { window.quartoToggleHeadroom(); }">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav navbar-nav-scroll me-auto">
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-ai" role="button" data-bs-toggle="dropdown" aria-expanded="false" rel="" target="">
<span class="menu-text">생성 AI</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-ai">
<li>
<a class="dropdown-item" href="/architecture.html" rel="" target="">
<span class="dropdown-text">chatGPT 이해</span></a>
</li>
<li>
<a class="dropdown-item" href="/trends.html" rel="" target="">
<span class="dropdown-text">추세 트렌드</span></a>
</li>
<li>
<a class="dropdown-item" href="/why_llm.html" rel="" target="">
<span class="dropdown-text">왜 거대언어모형인가?</span></a>
</li>
<li>
<a class="dropdown-item" href="/nlp_LLM.html" rel="" target="">
<span class="dropdown-text">NLP와 LLM</span></a>
</li>
<li>
<a class="dropdown-item" href="/gpt4_performance.html" rel="" target="">
<span class="dropdown-text">GPT-4 성능</span></a>
</li>
<li>
<a class="dropdown-item" href="/gpt-security.html" rel="" target="">
<span class="dropdown-text">챗GPT 보안사고</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/interface.html" rel="" target="">
<span class="dropdown-text">인터페이스</span></a>
</li>
<li>
<a class="dropdown-item" href="/open_source.html" rel="" target="">
<span class="dropdown-text">오픈소스 S/W LLM</span></a>
</li>
</ul>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-chatgpt-응용사례" role="button" data-bs-toggle="dropdown" aria-expanded="false" rel="" target="">
<span class="menu-text">chatGPT 응용사례</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-chatgpt-응용사례">
<li>
<a class="dropdown-item" href="/use-cases.html" rel="" target="">
<span class="dropdown-text">활용사례</span></a>
</li>
<li>
<a class="dropdown-item" href="/intro_avi.html" rel="" target="">
<span class="dropdown-text">법인 R 소개영상</span></a>
</li>
<li>
<a class="dropdown-item" href="/macbook.html" rel="" target="">
<span class="dropdown-text">맥북 투척사건</span></a>
</li>
<li>
<a class="dropdown-item" href="/office.html" rel="" target="">
<span class="dropdown-text">오피스 전쟁</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/news_article.html" rel="" target="">
<span class="dropdown-text">보도자료 작성</span></a>
</li>
<li>
<a class="dropdown-item" href="/intro_book.html" rel="" target="">
<span class="dropdown-text">데이터 과학 책</span></a>
</li>
<li>
<a class="dropdown-item" href="/intro_paper.html" rel="" target="">
<span class="dropdown-text">논문 초록</span></a>
</li>
<li>
<a class="dropdown-item" href="/rnd.html" rel="" target="">
<span class="dropdown-text">학술연구(R&D)</span></a>
</li>
<li>
<a class="dropdown-item" href="/yuji.html" rel="" target="">
<span class="dropdown-text">멤버 Yuji</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/stable_diffusion.html" rel="" target="">
<span class="dropdown-text">Stable Diffusion</span></a>
</li>
<li>
<a class="dropdown-item" href="/text_to_images.html" rel="" target="">
<span class="dropdown-text">Text-to-Images</span></a>
</li>
<li>
<a class="dropdown-item" href="/text2image.html" rel="" target="">
<span class="dropdown-text">`bitGPT` Text-to-Image</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/samsung.html" rel="" target="">
<span class="dropdown-text">삼전 주가예측</span></a>
</li>
<li>
<a class="dropdown-item" href="/calculator.html" rel="" target="">
<span class="dropdown-text">계산기 프로그램</span></a>
</li>
<li>
<a class="dropdown-item" href="/rcoding.html" rel="" target="">
<span class="dropdown-text">GPT R 코딩개발</span></a>
</li>
<li>
<a class="dropdown-item" href="/rcoding-copilot.html" rel="" target="">
<span class="dropdown-text">부조종사 R 코딩개발</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/math.html" rel="" target="">
<span class="dropdown-text">수학: MIT / 수능</span></a>
</li>
<li>
<a class="dropdown-item" href="/middle_school.html" rel="" target="">
<span class="dropdown-text">Shiny 앱</span></a>
</li>
<li>
<a class="dropdown-item" href="/inaugural.html" rel="" target="">
<span class="dropdown-text">대통령 취임사</span></a>
</li>
<li>
<a class="dropdown-item" href="/translation.html" rel="" target="">
<span class="dropdown-text">번역(영한, 한영)</span></a>
</li>
<li>
<a class="dropdown-item" href="/gg_grouping.html" rel="" target="">
<span class="dropdown-text">챗GPT 팀구성</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/biz_number_API.html" rel="" target="">
<span class="dropdown-text">사업자등록증 API (국세청)</span></a>
</li>
</ul>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-prompt-eng." role="button" data-bs-toggle="dropdown" aria-expanded="false" rel="" target="">
<span class="menu-text">Prompt Eng.</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-prompt-eng.">
<li>
<a class="dropdown-item" href="/prompt.html" rel="" target="">
<span class="dropdown-text">Prompt Engineering</span></a>
</li>
<li>
<a class="dropdown-item" href="/prompt_adv.html" rel="" target="">
<span class="dropdown-text">Advanced Prompt Engineering</span></a>
</li>
<li>
<a class="dropdown-item" href="/prompt_in_practice.html" rel="" target="">
<span class="dropdown-text">프롬프트 실무</span></a>
</li>
<li>
<a class="dropdown-item" href="/prompt_for_develoopers.html" rel="" target="">
<span class="dropdown-text">(개발자) 프롬프트 공학</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/prompt_data_science.html" rel="" target="">
<span class="dropdown-text">데이터 과학 프롬프트</span></a>
</li>
<li>
<a class="dropdown-item" href="/interview.html" rel="" target="">
<span class="dropdown-text">데이터 과학 인터뷰</span></a>
</li>
</ul>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu-" role="button" data-bs-toggle="dropdown" aria-expanded="false" rel="" target="">
<span class="menu-text">자동화/개발</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu-">
<li>
<a class="dropdown-item" href="/ide.html" rel="" target="">
<span class="dropdown-text">통합개발환경(IDE)</span></a>
</li>
<li>
<a class="dropdown-item" href="/reticulate.html" rel="" target="">
<span class="dropdown-text">파이썬 환경구축</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/openAI_api.html" rel="" target="">
<span class="dropdown-text">OpenAI API 프로그래밍</span></a>
</li>
<li>
<a class="dropdown-item" href="/openAI_api_apps.html" rel="" target="">
<span class="dropdown-text">OpenAI API 응용프로그램</span></a>
</li>
<li>
<a class="dropdown-item" href="/langchain_arch.html" rel="" target="">
<span class="dropdown-text">LangCahin 아키텍쳐</span></a>
</li>
<li>
<a class="dropdown-item" href="/whisper.html" rel="" target="">
<span class="dropdown-text">오정보 음성인식(Whisper)</span></a>
</li>
<li>
<a class="dropdown-item" href="/news_release.html" rel="" target="">
<span class="dropdown-text">오정보 요약</span></a>
</li>
<li>
<a class="dropdown-item" href="/misinfo_embedding.html" rel="" target="">
<span class="dropdown-text">오정보 임베딩</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/shiny_chatGPT.html" rel="" target="">
<span class="dropdown-text">Shiny 챗GPT</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/palmer_penguins.html" rel="" target="">
<span class="dropdown-text">펭귄 데이터셋</span></a>
</li>
<li>
<a class="dropdown-item" href="/penguins_analytics.html" rel="" target="">
<span class="dropdown-text">챗GPT 펭귄 데이터 분석</span></a>
</li>
<li>
<a class="dropdown-item" href="/three_paradigm.html" rel="" target="">
<span class="dropdown-text">AI 분석 도구</span></a>
</li>
<li>
<a class="dropdown-item" href="/penguin_analysis.html" rel="" target="">
<span class="dropdown-text">심슨 패러독스</span></a>
</li>
<li class="dropdown-header">
데이터 과학 AutoGPT</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/pandasai.html" rel="" target="">
<span class="dropdown-text">판다스 AI</span></a>
</li>
<li>
<a class="dropdown-item" href="/llama_penguins.html" rel="" target="">
<span class="dropdown-text">펭귄: 라마인덱스</span></a>
</li>
<li>
<a class="dropdown-item" href="/sql_openai.html" rel="" target="">
<span class="dropdown-text">챗GPT SQL</span></a>
</li>
<li><hr class="dropdown-divider"></li>
<li>
<a class="dropdown-item" href="/hf.html" rel="" target="">
<span class="dropdown-text">Hugging Face</span></a>
</li>
<li>
<a class="dropdown-item" href="/hf_windows.html" rel="" target="">
<span class="dropdown-text">Hugging Face(윈도우)</span></a>
</li>
<li>
<a class="dropdown-item" href="/hf_pipeline.html" rel="" target="">
<span class="dropdown-text">HF 파이프라인</span></a>
</li>
<li>
<a class="dropdown-item" href="/koGPT.html" rel="" target="">
<span class="dropdown-text">HuggingfaceR - 모형통계</span></a>
</li>
<li>
<a class="dropdown-item" href="/BERT.html" rel="" target="">
<span class="dropdown-text">BERT</span></a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="/blog.html" rel="" target="">
<span class="menu-text">게시글</span></a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="nav-menu--1" role="button" data-bs-toggle="dropdown" aria-expanded="false" rel="" target="">
<span class="menu-text">비즈니스</span>
</a>
<ul class="dropdown-menu" aria-labelledby="nav-menu--1">
<li>
<a class="dropdown-item" href="/chatGPT_overview.html" rel="" target="">
<span class="dropdown-text">챗GPT 개요</span></a>
</li>
</ul>
</li>
</ul>
<ul class="navbar-nav navbar-nav-scroll ms-auto">
<li class="nav-item compact">
<a class="nav-link" href="https://github.com/bit2r/chatGPT" rel="" target=""><i
class="bi bi-github"
role="img"
>
</i>
<span class="menu-text"></span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://r2bit.com" rel="" target="">
<span class="menu-text">R사용자회</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/LAION-AI/Open-Assistant" rel="" target=""><i
class="bi bi-github"
role="img"
>
</i>
<span class="menu-text">Open Assistant</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://rtutor.ai/" rel="" target="">
<span class="menu-text">RTutor</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about.html" rel="" target="">
<span class="menu-text">About</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
<div class="quarto-navbar-tools">
<a href="" class="quarto-color-scheme-toggle quarto-navigation-tool px-1" onclick="window.quartoToggleColorScheme(); return false;" title="다크 모드 전환"><i class="bi"></i></a>
</div>
</div> <!-- /container-fluid -->
</nav>
</header>
<!-- content -->
<div id="quarto-content" class="quarto-container page-columns page-rows-contents page-layout-article page-navbar">
<!-- sidebar -->
<!-- margin-sidebar -->
<div id="quarto-margin-sidebar" class="sidebar margin-sidebar">
<div id="quarto-toc-target"></div>
</div>
<!-- main -->
<main class="content" id="quarto-document-content">
<header id="title-block-header" class="quarto-title-block default">
<div class="quarto-title-banner">
<div class="quarto-title column-body">
<h1 class="title">챗GPT</h1>
<p class="subtitle lead">OpenAI API 응용프로그램</p>
<div>
<div class="description">
<p>OpenAI API 환경을 갖춘 후에 본격적인 응용프로그램 개발을 시작해보자.</p>
</div>
</div>
</div>
</div>
<div class="quarto-title-meta-author">
<div class="quarto-title-meta-heading">저자</div>
<div class="quarto-title-meta-heading">소속</div>
<div class="quarto-title-meta-contents">
<p class="author"><a href="https://www.linkedin.com/in/kwangchunlee/">이광춘</a> </p>
</div>
<div class="quarto-title-meta-contents">
<p class="affiliation">
<a href="https://github.com/bit2r">
한국 R 사용자회
</a>
</p>
</div>
</div>
<div class="quarto-title-meta">
<div>
<div class="quarto-title-meta-heading">공개</div>
<div class="quarto-title-meta-contents">
<p class="date">2023년 08월 08일</p>
</div>
</div>
</div>
</header>
<nav id="TOC" role="doc-toc">
<h2 id="toc-title">목차</h2>
<ul>
<li><a href="#들어가며" id="toc-들어가며"><span class="header-section-number">1</span> 들어가며</a>
<ul>
<li><a href="#openai-패키지" id="toc-openai-패키지"><span class="header-section-number">1.1</span> <code>openai</code> 패키지</a></li>
<li><a href="#gpt-4-모델" id="toc-gpt-4-모델"><span class="header-section-number">1.2</span> <code>gpt-4</code> 모델</a></li>
</ul></li>
<li><a href="#completion과-chatcompletion" id="toc-completion과-chatcompletion"><span class="header-section-number">2</span> <code>Completion</code>과 <code>ChatCompletion</code></a></li>
<li><a href="#openai-모형" id="toc-openai-모형"><span class="header-section-number">3</span> <code>openai</code> 모형</a></li>
<li><a href="#중재moderation" id="toc-중재moderation"><span class="header-section-number">4</span> 중재(Moderation)</a></li>
<li><a href="#음성" id="toc-음성"><span class="header-section-number">5</span> 음성</a>
<ul>
<li><a href="#연설문-낭독" id="toc-연설문-낭독"><span class="header-section-number">5.1</span> 연설문 낭독</a></li>
<li><a href="#mp3-텍스트" id="toc-mp3-텍스트"><span class="header-section-number">5.2</span> <code>.mp3</code> → 텍스트</a></li>
<li><a href="#후처리" id="toc-후처리"><span class="header-section-number">5.3</span> 후처리</a></li>
</ul></li>
<li><a href="#번역" id="toc-번역"><span class="header-section-number">6</span> 번역</a></li>
<li><a href="#뉴스기사-제작" id="toc-뉴스기사-제작"><span class="header-section-number">7</span> 뉴스기사 제작</a></li>
<li><a href="#ai-이미지" id="toc-ai-이미지"><span class="header-section-number">8</span> AI 이미지</a>
<ul>
<li><a href="#ai-이미지-후처리" id="toc-ai-이미지-후처리"><span class="header-section-number">8.1</span> AI 이미지 후처리</a></li>
</ul></li>
<li><a href="#임베딩" id="toc-임베딩"><span class="header-section-number">9</span> 임베딩</a>
<ul>
<li><a href="#텍스트-벡터-표현" id="toc-텍스트-벡터-표현"><span class="header-section-number">9.1</span> 텍스트 벡터 표현</a></li>
</ul></li>
</ul>
</nav>
<section id="들어가며" class="level1" data-number="1">
<h1 data-number="1"><span class="header-section-number">1</span> 들어가며</h1>
<p><code>.env</code> 파일에 OpenAI API-KEY 를 저장한 경우 <code>.gitignore</code> 에 <code>.env</code>를 기록하여 협업과 공개를 할 경우 주요 정보가 외부에 노출 되지 않도록 주의한다.</p>
<section id="openai-패키지" class="level2" data-number="1.1">
<h2 data-number="1.1"><span class="header-section-number">1.1</span> <code>openai</code> 패키지</h2>
<p>GitHub 저장소 <a href="https://github.com/openai/openai-python">OpenAI Python Library</a>의 <code>openai</code> 파이썬 패키지를 설치한 후 버전을 확인한다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb1"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="op">!</span> pip show openai</span>
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a>Name: openai</span>
<span id="cb1-4"><a href="#cb1-4" aria-hidden="true" tabindex="-1"></a>Version: <span class="fl">0.27.2</span></span>
<span id="cb1-5"><a href="#cb1-5" aria-hidden="true" tabindex="-1"></a>Summary: Python client library <span class="cf">for</span> the OpenAI API</span>
<span id="cb1-6"><a href="#cb1-6" aria-hidden="true" tabindex="-1"></a>Home<span class="op">-</span>page: https:<span class="op">//</span>github.com<span class="op">/</span>openai<span class="op">/</span>openai<span class="op">-</span>python</span>
<span id="cb1-7"><a href="#cb1-7" aria-hidden="true" tabindex="-1"></a>Author: OpenAI</span>
<span id="cb1-8"><a href="#cb1-8" aria-hidden="true" tabindex="-1"></a>Author<span class="op">-</span>email: support<span class="op">@</span>openai.com</span>
<span id="cb1-9"><a href="#cb1-9" aria-hidden="true" tabindex="-1"></a>License: </span>
<span id="cb1-10"><a href="#cb1-10" aria-hidden="true" tabindex="-1"></a>Location: c:\miniconda\envs\r<span class="op">-</span>reticulate\lib\site<span class="op">-</span>packages</span>
<span id="cb1-11"><a href="#cb1-11" aria-hidden="true" tabindex="-1"></a>Requires: aiohttp, requests, tqdm</span>
<span id="cb1-12"><a href="#cb1-12" aria-hidden="true" tabindex="-1"></a>Required<span class="op">-</span>by: </span></code></pre></div>
</details>
</div>
</section>
<section id="gpt-4-모델" class="level2" data-number="1.2">
<h2 data-number="1.2"><span class="header-section-number">1.2</span> <code>gpt-4</code> 모델</h2>
<p><code>gpt-3.5-turbo</code> 모형은 속도가 빠르고 API 호출 당 가격이 저렴하지만, 성능이 <code>gpt-4</code> 보다 낮은 것으로 알려져 있다. <code>max_tokens</code> 크기를 달리하여 API 반환길이를 조절할 수 있고, <code>temperature</code> 값을 달리하여 사실에 보다 가까운 값을 얻고자 할 경우 0으로 그렇지 않고 다양한 창의적인 응답을 원할 경우 0 보다 큰 값을 지정한다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb2"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> openai</span>
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> dotenv <span class="im">import</span> load_dotenv</span>
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> os</span>
<span id="cb2-4"><a href="#cb2-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb2-5"><a href="#cb2-5" aria-hidden="true" tabindex="-1"></a>load_dotenv()</span>
<span id="cb2-6"><a href="#cb2-6" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb2-7"><a href="#cb2-7" aria-hidden="true" tabindex="-1"></a>openai.api_key <span class="op">=</span> os.getenv(<span class="st">'OPENAI_API_KEY'</span>)</span>
<span id="cb2-8"><a href="#cb2-8" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb2-9"><a href="#cb2-9" aria-hidden="true" tabindex="-1"></a>response <span class="op">=</span> ChatCompletion.create(</span>
<span id="cb2-10"><a href="#cb2-10" aria-hidden="true" tabindex="-1"></a> model <span class="op">=</span> <span class="st">"gpt-4"</span>,</span>
<span id="cb2-11"><a href="#cb2-11" aria-hidden="true" tabindex="-1"></a> messages <span class="op">=</span> [</span>
<span id="cb2-12"><a href="#cb2-12" aria-hidden="true" tabindex="-1"></a> {<span class="st">"role"</span>: <span class="st">"system"</span>, <span class="st">"content"</span>: <span class="st">"You are a helpful assistant."</span>},</span>
<span id="cb2-13"><a href="#cb2-13" aria-hidden="true" tabindex="-1"></a> {<span class="st">"role"</span>: <span class="st">"user"</span>, <span class="st">"content"</span>: <span class="st">"파이썬하고 R 하고 싸우면 누가 이겨?"</span>}</span>
<span id="cb2-14"><a href="#cb2-14" aria-hidden="true" tabindex="-1"></a> ],</span>
<span id="cb2-15"><a href="#cb2-15" aria-hidden="true" tabindex="-1"></a> max_tokens <span class="op">=</span> <span class="dv">100</span>,</span>
<span id="cb2-16"><a href="#cb2-16" aria-hidden="true" tabindex="-1"></a> temperature <span class="op">=</span> <span class="dv">0</span></span>
<span id="cb2-17"><a href="#cb2-17" aria-hidden="true" tabindex="-1"></a>)</span>
<span id="cb2-18"><a href="#cb2-18" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb2-19"><a href="#cb2-19" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(response[<span class="st">"choices"</span>][<span class="dv">0</span>][<span class="st">'message'</span>][<span class="st">'content'</span>])</span></code></pre></div>
</details>
</div>
<div class="sourceCode" id="cb3"><pre class="sourceCode bash"><code class="sourceCode bash"><span id="cb3-1"><a href="#cb3-1" aria-hidden="true" tabindex="-1"></a><span class="ex">파이썬과</span> R은 프로그래밍 언어로, 싸우는 것이 아니라 각각의 특성과 용도에 따라 사용됩니다. </span>
<span id="cb3-2"><a href="#cb3-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb3-3"><a href="#cb3-3" aria-hidden="true" tabindex="-1"></a><span class="ex">파이썬은</span> 범용 프로그래밍 언어로, 웹 개발, 데이터 분석, 인공 지능 등 다양한 분야에서 사용됩니다.</span></code></pre></div>
</section>
</section>
<section id="completion과-chatcompletion" class="level1" data-number="2">
<h1 data-number="2"><span class="header-section-number">2</span> <code>Completion</code>과 <code>ChatCompletion</code></h1>
<p><code>openai.Completion.create()</code> 함수를 사용하여 <code>text-davinci-003</code>, <code>text-davinci-002</code>, <code>ada</code>, <code>babbage</code>, <code>curie</code>, <code>davinci</code> 등 텍스트 완성 기능을 사용할 수 있다. 하지만, <code>openai.ChatCompletion.create()</code> 함수가 대세로 떠올랐으며 <code>gpt-4</code>를 비롯한 고급 모형과 AI 고급기능을 사용할 경우 비용이 높아지는 단점도 있다. 가성비가 뛰어난 LLM 모형을 선택하여 해당 기능을 구현하고 문제를 풀어가는 지혜가 필요하다.</p>
<p><span class="column-margin"><a href="https://openai.com/pricing">OpenAI Pricing</a></span></p>
</section>
<section id="openai-모형" class="level1" data-number="3">
<h1 data-number="3"><span class="header-section-number">3</span> <code>openai</code> 모형</h1>
<p><code>openai</code> API를 사용할 때 다양한 모형에 대한 확인이 필요하다. 이를 위해서 API 호출을 통해 이용가능한 모형을 확인한다. 특히, 수시로 OpenAI에서 제공되는 모형이 생겨나고 없어지기 때문에 API를 사용한 AI 모형을 개발할 때 특히 주의한다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb4"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb4-1"><a href="#cb4-1" aria-hidden="true" tabindex="-1"></a><span class="kw">def</span> list_all_models():</span>
<span id="cb4-2"><a href="#cb4-2" aria-hidden="true" tabindex="-1"></a> model_list <span class="op">=</span> openai.Model.<span class="bu">list</span>()[<span class="st">'data'</span>]</span>
<span id="cb4-3"><a href="#cb4-3" aria-hidden="true" tabindex="-1"></a> model_ids <span class="op">=</span> [x[<span class="st">'id'</span>] <span class="cf">for</span> x <span class="kw">in</span> model_list]</span>
<span id="cb4-4"><a href="#cb4-4" aria-hidden="true" tabindex="-1"></a> model_ids.sort()</span>
<span id="cb4-5"><a href="#cb4-5" aria-hidden="true" tabindex="-1"></a> pprint.pprint(model_ids)</span>
<span id="cb4-6"><a href="#cb4-6" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb4-7"><a href="#cb4-7" aria-hidden="true" tabindex="-1"></a><span class="cf">if</span> <span class="va">__name__</span> <span class="op">==</span> <span class="st">'__main__'</span>:</span>
<span id="cb4-8"><a href="#cb4-8" aria-hidden="true" tabindex="-1"></a> list_all_models()</span></code></pre></div>
</details>
</div>
<div class="sourceCode" id="cb5"><pre class="sourceCode bash"><code class="sourceCode bash"><span id="cb5-1"><a href="#cb5-1" aria-hidden="true" tabindex="-1"></a><span class="ex">[</span><span class="st">'ada'</span><span class="ex">,</span></span>
<span id="cb5-2"><a href="#cb5-2" aria-hidden="true" tabindex="-1"></a> <span class="st">'ada-code-search-code'</span><span class="ex">,</span></span>
<span id="cb5-3"><a href="#cb5-3" aria-hidden="true" tabindex="-1"></a> <span class="st">'ada-code-search-text'</span><span class="ex">,</span></span>
<span id="cb5-4"><a href="#cb5-4" aria-hidden="true" tabindex="-1"></a> <span class="st">'ada-search-document'</span><span class="ex">,</span></span>
<span id="cb5-5"><a href="#cb5-5" aria-hidden="true" tabindex="-1"></a> <span class="st">'ada-search-query'</span><span class="ex">,</span></span>
<span id="cb5-6"><a href="#cb5-6" aria-hidden="true" tabindex="-1"></a> <span class="st">'ada-similarity'</span><span class="ex">,</span></span>
<span id="cb5-7"><a href="#cb5-7" aria-hidden="true" tabindex="-1"></a> <span class="st">'babbage'</span><span class="ex">,</span></span>
<span id="cb5-8"><a href="#cb5-8" aria-hidden="true" tabindex="-1"></a> <span class="st">'babbage-code-search-code'</span><span class="ex">,</span></span>
<span id="cb5-9"><a href="#cb5-9" aria-hidden="true" tabindex="-1"></a> <span class="st">'babbage-code-search-text'</span><span class="ex">,</span></span>
<span id="cb5-10"><a href="#cb5-10" aria-hidden="true" tabindex="-1"></a> <span class="st">'babbage-search-document'</span><span class="ex">,</span></span>
<span id="cb5-11"><a href="#cb5-11" aria-hidden="true" tabindex="-1"></a> <span class="st">'babbage-search-query'</span><span class="ex">,</span></span>
<span id="cb5-12"><a href="#cb5-12" aria-hidden="true" tabindex="-1"></a> <span class="st">'babbage-similarity'</span><span class="ex">,</span></span>
<span id="cb5-13"><a href="#cb5-13" aria-hidden="true" tabindex="-1"></a> <span class="st">'code-davinci-edit-001'</span><span class="ex">,</span></span>
<span id="cb5-14"><a href="#cb5-14" aria-hidden="true" tabindex="-1"></a> <span class="st">'code-search-ada-code-001'</span><span class="ex">,</span></span>
<span id="cb5-15"><a href="#cb5-15" aria-hidden="true" tabindex="-1"></a> <span class="st">'code-search-ada-text-001'</span><span class="ex">,</span></span>
<span id="cb5-16"><a href="#cb5-16" aria-hidden="true" tabindex="-1"></a> <span class="st">'code-search-babbage-code-001'</span><span class="ex">,</span></span>
<span id="cb5-17"><a href="#cb5-17" aria-hidden="true" tabindex="-1"></a> <span class="st">'code-search-babbage-text-001'</span><span class="ex">,</span></span>
<span id="cb5-18"><a href="#cb5-18" aria-hidden="true" tabindex="-1"></a> <span class="st">'curie'</span><span class="ex">,</span></span>
<span id="cb5-19"><a href="#cb5-19" aria-hidden="true" tabindex="-1"></a> <span class="st">'curie-instruct-beta'</span><span class="ex">,</span></span>
<span id="cb5-20"><a href="#cb5-20" aria-hidden="true" tabindex="-1"></a> <span class="st">'curie-search-document'</span><span class="ex">,</span></span>
<span id="cb5-21"><a href="#cb5-21" aria-hidden="true" tabindex="-1"></a> <span class="st">'curie-search-query'</span><span class="ex">,</span></span>
<span id="cb5-22"><a href="#cb5-22" aria-hidden="true" tabindex="-1"></a> <span class="st">'curie-similarity'</span><span class="ex">,</span></span>
<span id="cb5-23"><a href="#cb5-23" aria-hidden="true" tabindex="-1"></a> <span class="st">'davinci'</span><span class="ex">,</span></span>
<span id="cb5-24"><a href="#cb5-24" aria-hidden="true" tabindex="-1"></a> <span class="st">'davinci-instruct-beta'</span><span class="ex">,</span></span>
<span id="cb5-25"><a href="#cb5-25" aria-hidden="true" tabindex="-1"></a> <span class="st">'davinci-search-document'</span><span class="ex">,</span></span>
<span id="cb5-26"><a href="#cb5-26" aria-hidden="true" tabindex="-1"></a> <span class="st">'davinci-search-query'</span><span class="ex">,</span></span>
<span id="cb5-27"><a href="#cb5-27" aria-hidden="true" tabindex="-1"></a> <span class="st">'davinci-similarity'</span><span class="ex">,</span></span>
<span id="cb5-28"><a href="#cb5-28" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-3.5-turbo'</span><span class="ex">,</span></span>
<span id="cb5-29"><a href="#cb5-29" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-3.5-turbo-0301'</span><span class="ex">,</span></span>
<span id="cb5-30"><a href="#cb5-30" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-3.5-turbo-0613'</span><span class="ex">,</span></span>
<span id="cb5-31"><a href="#cb5-31" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-3.5-turbo-16k'</span><span class="ex">,</span></span>
<span id="cb5-32"><a href="#cb5-32" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-3.5-turbo-16k-0613'</span><span class="ex">,</span></span>
<span id="cb5-33"><a href="#cb5-33" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-4'</span><span class="ex">,</span></span>
<span id="cb5-34"><a href="#cb5-34" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-4-0314'</span><span class="ex">,</span></span>
<span id="cb5-35"><a href="#cb5-35" aria-hidden="true" tabindex="-1"></a> <span class="st">'gpt-4-0613'</span><span class="ex">,</span></span>
<span id="cb5-36"><a href="#cb5-36" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-ada-001'</span><span class="ex">,</span></span>
<span id="cb5-37"><a href="#cb5-37" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-babbage-001'</span><span class="ex">,</span></span>
<span id="cb5-38"><a href="#cb5-38" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-curie-001'</span><span class="ex">,</span></span>
<span id="cb5-39"><a href="#cb5-39" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-davinci-001'</span><span class="ex">,</span></span>
<span id="cb5-40"><a href="#cb5-40" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-davinci-002'</span><span class="ex">,</span></span>
<span id="cb5-41"><a href="#cb5-41" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-davinci-003'</span><span class="ex">,</span></span>
<span id="cb5-42"><a href="#cb5-42" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-davinci-edit-001'</span><span class="ex">,</span></span>
<span id="cb5-43"><a href="#cb5-43" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-embedding-ada-002'</span><span class="ex">,</span></span>
<span id="cb5-44"><a href="#cb5-44" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-ada-doc-001'</span><span class="ex">,</span></span>
<span id="cb5-45"><a href="#cb5-45" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-ada-query-001'</span><span class="ex">,</span></span>
<span id="cb5-46"><a href="#cb5-46" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-babbage-doc-001'</span><span class="ex">,</span></span>
<span id="cb5-47"><a href="#cb5-47" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-babbage-query-001'</span><span class="ex">,</span></span>
<span id="cb5-48"><a href="#cb5-48" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-curie-doc-001'</span><span class="ex">,</span></span>
<span id="cb5-49"><a href="#cb5-49" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-curie-query-001'</span><span class="ex">,</span></span>
<span id="cb5-50"><a href="#cb5-50" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-davinci-doc-001'</span><span class="ex">,</span></span>
<span id="cb5-51"><a href="#cb5-51" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-search-davinci-query-001'</span><span class="ex">,</span></span>
<span id="cb5-52"><a href="#cb5-52" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-similarity-ada-001'</span><span class="ex">,</span></span>
<span id="cb5-53"><a href="#cb5-53" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-similarity-babbage-001'</span><span class="ex">,</span></span>
<span id="cb5-54"><a href="#cb5-54" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-similarity-curie-001'</span><span class="ex">,</span></span>
<span id="cb5-55"><a href="#cb5-55" aria-hidden="true" tabindex="-1"></a> <span class="st">'text-similarity-davinci-001'</span><span class="ex">,</span></span>
<span id="cb5-56"><a href="#cb5-56" aria-hidden="true" tabindex="-1"></a> <span class="st">'whisper-1'</span><span class="ex">]</span></span></code></pre></div>
</section>
<section id="중재moderation" class="level1" data-number="4">
<h1 data-number="4"><span class="header-section-number">4</span> 중재(Moderation)</h1>
<p>AI LLM 모형에 입력값으로 전달되는 다양한 텍스트에 부적절한 내용이 담겨있을 수 있다. AI 제품을 제작할 때 이를 사전에 감지하여 적절한 조치를 취하는 것이 필요하다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb6"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb6-1"><a href="#cb6-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> openai</span>
<span id="cb6-2"><a href="#cb6-2" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> dotenv <span class="im">import</span> load_dotenv</span>
<span id="cb6-3"><a href="#cb6-3" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> os</span>
<span id="cb6-4"><a href="#cb6-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb6-5"><a href="#cb6-5" aria-hidden="true" tabindex="-1"></a>load_dotenv()</span>
<span id="cb6-6"><a href="#cb6-6" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb6-7"><a href="#cb6-7" aria-hidden="true" tabindex="-1"></a>openai.api_key <span class="op">=</span> os.getenv(<span class="st">'OPENAI_API_KEY'</span>)</span>
<span id="cb6-8"><a href="#cb6-8" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb6-9"><a href="#cb6-9" aria-hidden="true" tabindex="-1"></a>response <span class="op">=</span> openai.Moderation.create(</span>
<span id="cb6-10"><a href="#cb6-10" aria-hidden="true" tabindex="-1"></a> model <span class="op">=</span> <span class="st">"text-moderation-latest"</span>,</span>
<span id="cb6-11"><a href="#cb6-11" aria-hidden="true" tabindex="-1"></a> <span class="bu">input</span> <span class="op">=</span> <span class="st">"정신병자 천국이구나"</span></span>
<span id="cb6-12"><a href="#cb6-12" aria-hidden="true" tabindex="-1"></a>)</span>
<span id="cb6-13"><a href="#cb6-13" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb6-14"><a href="#cb6-14" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(response)</span></code></pre></div>
</details>
</div>
<div class="sourceCode" id="cb7"><pre class="sourceCode bash"><code class="sourceCode bash"><span id="cb7-1"><a href="#cb7-1" aria-hidden="true" tabindex="-1"></a><span class="co">#> {</span></span>
<span id="cb7-2"><a href="#cb7-2" aria-hidden="true" tabindex="-1"></a><span class="co">#> "id": "modr-7dwWS1RCU6qbmrmJNQOZrxElV6Qsa",</span></span>
<span id="cb7-3"><a href="#cb7-3" aria-hidden="true" tabindex="-1"></a><span class="co">#> "model": "text-moderation-005",</span></span>
<span id="cb7-4"><a href="#cb7-4" aria-hidden="true" tabindex="-1"></a><span class="co">#> "results": [</span></span>
<span id="cb7-5"><a href="#cb7-5" aria-hidden="true" tabindex="-1"></a><span class="co">#> {</span></span>
<span id="cb7-6"><a href="#cb7-6" aria-hidden="true" tabindex="-1"></a><span class="co">#> "flagged": false,</span></span>
<span id="cb7-7"><a href="#cb7-7" aria-hidden="true" tabindex="-1"></a><span class="co">#> "categories": {</span></span>
<span id="cb7-8"><a href="#cb7-8" aria-hidden="true" tabindex="-1"></a><span class="co">#> "sexual": false,</span></span>
<span id="cb7-9"><a href="#cb7-9" aria-hidden="true" tabindex="-1"></a><span class="co">#> "hate": false,</span></span>
<span id="cb7-10"><a href="#cb7-10" aria-hidden="true" tabindex="-1"></a><span class="co">#> "harassment": false,</span></span>
<span id="cb7-11"><a href="#cb7-11" aria-hidden="true" tabindex="-1"></a><span class="co">#> "self-harm": false,</span></span>
<span id="cb7-12"><a href="#cb7-12" aria-hidden="true" tabindex="-1"></a><span class="co">#> "sexual/minors": false,</span></span>
<span id="cb7-13"><a href="#cb7-13" aria-hidden="true" tabindex="-1"></a><span class="co">#> "hate/threatening": false,</span></span>
<span id="cb7-14"><a href="#cb7-14" aria-hidden="true" tabindex="-1"></a><span class="co">#> "violence/graphic": false,</span></span>
<span id="cb7-15"><a href="#cb7-15" aria-hidden="true" tabindex="-1"></a><span class="co">#> "self-harm/intent": false,</span></span>
<span id="cb7-16"><a href="#cb7-16" aria-hidden="true" tabindex="-1"></a><span class="co">#> "self-harm/instructions": false,</span></span>
<span id="cb7-17"><a href="#cb7-17" aria-hidden="true" tabindex="-1"></a><span class="co">#> "harassment/threatening": false,</span></span>
<span id="cb7-18"><a href="#cb7-18" aria-hidden="true" tabindex="-1"></a><span class="co">#> "violence": false</span></span>
<span id="cb7-19"><a href="#cb7-19" aria-hidden="true" tabindex="-1"></a><span class="co">#> },</span></span>
<span id="cb7-20"><a href="#cb7-20" aria-hidden="true" tabindex="-1"></a><span class="co">#> "category_scores": {</span></span>
<span id="cb7-21"><a href="#cb7-21" aria-hidden="true" tabindex="-1"></a><span class="co">#> "sexual": 4.693797e-05,</span></span>
<span id="cb7-22"><a href="#cb7-22" aria-hidden="true" tabindex="-1"></a><span class="co">#> "hate": 0.000676339,</span></span>
<span id="cb7-23"><a href="#cb7-23" aria-hidden="true" tabindex="-1"></a><span class="co">#> "harassment": 0.0005268965,</span></span>
<span id="cb7-24"><a href="#cb7-24" aria-hidden="true" tabindex="-1"></a><span class="co">#> "self-harm": 9.536401e-06,</span></span>
<span id="cb7-25"><a href="#cb7-25" aria-hidden="true" tabindex="-1"></a><span class="co">#> "sexual/minors": 8.569186e-07,</span></span>
<span id="cb7-26"><a href="#cb7-26" aria-hidden="true" tabindex="-1"></a><span class="co">#> "hate/threatening": 0.0012578131,</span></span>
<span id="cb7-27"><a href="#cb7-27" aria-hidden="true" tabindex="-1"></a><span class="co">#> "violence/graphic": 9.558387e-07,</span></span>
<span id="cb7-28"><a href="#cb7-28" aria-hidden="true" tabindex="-1"></a><span class="co">#> "self-harm/intent": 2.2572526e-06,</span></span>
<span id="cb7-29"><a href="#cb7-29" aria-hidden="true" tabindex="-1"></a><span class="co">#> "self-harm/instructions": 2.0226207e-06,</span></span>
<span id="cb7-30"><a href="#cb7-30" aria-hidden="true" tabindex="-1"></a><span class="co">#> "harassment/threatening": 0.00021643011,</span></span>
<span id="cb7-31"><a href="#cb7-31" aria-hidden="true" tabindex="-1"></a><span class="co">#> "violence": 1.2982889e-05</span></span>
<span id="cb7-32"><a href="#cb7-32" aria-hidden="true" tabindex="-1"></a><span class="co">#> }</span></span>
<span id="cb7-33"><a href="#cb7-33" aria-hidden="true" tabindex="-1"></a><span class="co">#> }</span></span>
<span id="cb7-34"><a href="#cb7-34" aria-hidden="true" tabindex="-1"></a><span class="co">#> ]</span></span>
<span id="cb7-35"><a href="#cb7-35" aria-hidden="true" tabindex="-1"></a><span class="co">#> }</span></span></code></pre></div>
<p><a href="https://github.com/2runo/Curse-detection-data">욕설 감지 데이터셋</a>에서 욕설로 라벨링된 텍스트를 하나 가져와서 살펴본다. 결과는 욕설 뿐만 아니라 다양한 측면에서 해당 프롬프트 텍스트에 대한 평가결과를 제시하고 있다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb8"><pre class="sourceCode r cell-code"><code class="sourceCode r"><span id="cb8-1"><a href="#cb8-1" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(reticulate)</span>
<span id="cb8-2"><a href="#cb8-2" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(tidyverse)</span>
<span id="cb8-3"><a href="#cb8-3" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb8-4"><a href="#cb8-4" aria-hidden="true" tabindex="-1"></a>moderation_part_1 <span class="ot"><-</span> py<span class="sc">$</span>response<span class="sc">$</span>results[[<span class="dv">1</span>]]<span class="sc">$</span>categories <span class="sc">|></span> </span>
<span id="cb8-5"><a href="#cb8-5" aria-hidden="true" tabindex="-1"></a> <span class="fu">enframe</span>(<span class="at">name =</span> <span class="st">"구분"</span>) <span class="sc">|></span> </span>
<span id="cb8-6"><a href="#cb8-6" aria-hidden="true" tabindex="-1"></a> <span class="fu">mutate</span>(판정 <span class="ot">=</span> <span class="fu">map_lgl</span>(value, <span class="dv">1</span>)) <span class="sc">|></span> </span>
<span id="cb8-7"><a href="#cb8-7" aria-hidden="true" tabindex="-1"></a> <span class="fu">select</span>(구분, 판정)</span>
<span id="cb8-8"><a href="#cb8-8" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb8-9"><a href="#cb8-9" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb8-10"><a href="#cb8-10" aria-hidden="true" tabindex="-1"></a>moderation_part_2 <span class="ot"><-</span> py<span class="sc">$</span>response<span class="sc">$</span>results[[<span class="dv">1</span>]]<span class="sc">$</span>category_scores <span class="sc">|></span> </span>
<span id="cb8-11"><a href="#cb8-11" aria-hidden="true" tabindex="-1"></a> <span class="fu">enframe</span>(<span class="at">name =</span> <span class="st">"구분"</span>) <span class="sc">|></span> </span>
<span id="cb8-12"><a href="#cb8-12" aria-hidden="true" tabindex="-1"></a> <span class="fu">mutate</span>(점수 <span class="ot">=</span> <span class="fu">map_dbl</span>(value, <span class="dv">1</span>)) <span class="sc">|></span> </span>
<span id="cb8-13"><a href="#cb8-13" aria-hidden="true" tabindex="-1"></a> <span class="fu">select</span>(구분, 점수)</span>
<span id="cb8-14"><a href="#cb8-14" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb8-15"><a href="#cb8-15" aria-hidden="true" tabindex="-1"></a>moderation_tbl <span class="ot"><-</span> <span class="fu">left_join</span>(moderation_part_1, moderation_part_2)</span>
<span id="cb8-16"><a href="#cb8-16" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb8-17"><a href="#cb8-17" aria-hidden="true" tabindex="-1"></a>moderation_tbl <span class="sc">|></span> </span>
<span id="cb8-18"><a href="#cb8-18" aria-hidden="true" tabindex="-1"></a> <span class="fu">arrange</span>(<span class="fu">desc</span>(점수))</span></code></pre></div>
</details>
</div>
<div class="sourceCode" id="cb9"><pre class="sourceCode bash"><code class="sourceCode bash"><span id="cb9-1"><a href="#cb9-1" aria-hidden="true" tabindex="-1"></a><span class="co">#> # A tibble: 11 × 3</span></span>
<span id="cb9-2"><a href="#cb9-2" aria-hidden="true" tabindex="-1"></a><span class="co">#> 구분 판정 점수</span></span>
<span id="cb9-3"><a href="#cb9-3" aria-hidden="true" tabindex="-1"></a><span class="co">#> <chr> <lgl> <dbl></span></span>
<span id="cb9-4"><a href="#cb9-4" aria-hidden="true" tabindex="-1"></a><span class="co">#> 1 hate/threatening FALSE 0.00126 </span></span>
<span id="cb9-5"><a href="#cb9-5" aria-hidden="true" tabindex="-1"></a><span class="co">#> 2 hate FALSE 0.000676 </span></span>
<span id="cb9-6"><a href="#cb9-6" aria-hidden="true" tabindex="-1"></a><span class="co">#> 3 harassment FALSE 0.000527 </span></span>
<span id="cb9-7"><a href="#cb9-7" aria-hidden="true" tabindex="-1"></a><span class="co">#> 4 harassment/threatening FALSE 0.000216 </span></span>
<span id="cb9-8"><a href="#cb9-8" aria-hidden="true" tabindex="-1"></a><span class="co">#> 5 sexual FALSE 0.0000469 </span></span>
<span id="cb9-9"><a href="#cb9-9" aria-hidden="true" tabindex="-1"></a><span class="co">#> 6 violence FALSE 0.0000130 </span></span>
<span id="cb9-10"><a href="#cb9-10" aria-hidden="true" tabindex="-1"></a><span class="co">#> 7 self-harm FALSE 0.00000954 </span></span>
<span id="cb9-11"><a href="#cb9-11" aria-hidden="true" tabindex="-1"></a><span class="co">#> 8 self-harm/intent FALSE 0.00000226 </span></span>
<span id="cb9-12"><a href="#cb9-12" aria-hidden="true" tabindex="-1"></a><span class="co">#> 9 self-harm/instructions FALSE 0.00000202 </span></span>
<span id="cb9-13"><a href="#cb9-13" aria-hidden="true" tabindex="-1"></a><span class="co">#> 10 violence/graphic FALSE 0.000000956</span></span>
<span id="cb9-14"><a href="#cb9-14" aria-hidden="true" tabindex="-1"></a><span class="co">#> 11 sexual/minors FALSE 0.000000857</span></span></code></pre></div>
</section>
<section id="음성" class="level1" data-number="5">
<h1 data-number="5"><span class="header-section-number">5</span> 음성</h1>
<p>행정안전부 <a href="https://www.pa.go.kr/research/contents/speech/index.jsp">대통령기록관</a>에 연설기록 중 연설음성에서 제84주년 3.1절 기념식 노무현 대통령 음성원고를 대상으로 OpenAI Whisper API를 사용해서 텍스트를 추출해보자.</p>
<section id="연설문-낭독" class="level2" data-number="5.1">
<h2 data-number="5.1"><span class="header-section-number">5.1</span> 연설문 낭독</h2>
<p>‘제84주년 3.1절’ 기념행사에서 노무현 대통령이 낭독한 연설문을 요약하면 다음과 같다.</p>
<blockquote>
<p>3.1절을 맞아 일제에 항거한 애국선열들께 감사와 경의 표함. 국민통합과 개혁으로 평화와 번영의 동북아시대를 열어가고 자랑스런 대한민국을 우리 후손에게 물려줄 것을 연설했다.</p>
</blockquote>
<p><a href="https://www.audacityteam.org/download/">Audacity</a> 프로그램에서 불필요한 부분 삭제하고 해당 연설문만 추출하여 <code>.mp3</code> 파일로 준비한다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb10"><pre class="sourceCode r cell-code"><code class="sourceCode r"><span id="cb10-1"><a href="#cb10-1" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(av)</span>
<span id="cb10-2"><a href="#cb10-2" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(embedr)</span>
<span id="cb10-3"><a href="#cb10-3" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb10-4"><a href="#cb10-4" aria-hidden="true" tabindex="-1"></a>embedr<span class="sc">::</span><span class="fu">embed_audio</span>(<span class="st">"data/제84주년_31절_기념사_노무현.mp3"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<audio controls> <source src='data/제84주년_31절_기념사_노무현.mp3' type='audio/mpeg'> Your browser does not support the audio tag; for browser support, please see: https://www.w3schools.com/tags/tag_audio.asp </audio>
</div>
</div>
</section>
<section id="mp3-텍스트" class="level2" data-number="5.2">
<h2 data-number="5.2"><span class="header-section-number">5.2</span> <code>.mp3</code> → 텍스트</h2>
<p>OpenAI Whisper API를 사용하여 음성을 TXT로 변환하는 작업을 수행한다. <code>.mp3</code> 파일을 준비하고,<code>Audio.transcribe()</code> 함수를 사용하여 <code>.txt</code> 텍스트 파일로 저장한다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb11"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb11-1"><a href="#cb11-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> openai</span>
<span id="cb11-2"><a href="#cb11-2" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> dotenv <span class="im">import</span> load_dotenv</span>
<span id="cb11-3"><a href="#cb11-3" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> os</span>
<span id="cb11-4"><a href="#cb11-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb11-5"><a href="#cb11-5" aria-hidden="true" tabindex="-1"></a><span class="co"># API KEY ----------------------</span></span>
<span id="cb11-6"><a href="#cb11-6" aria-hidden="true" tabindex="-1"></a>load_dotenv()</span>
<span id="cb11-7"><a href="#cb11-7" aria-hidden="true" tabindex="-1"></a>openai.api_key <span class="op">=</span> os.getenv(<span class="st">'OPENAI_API_KEY'</span>)</span>
<span id="cb11-8"><a href="#cb11-8" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb11-9"><a href="#cb11-9" aria-hidden="true" tabindex="-1"></a><span class="co"># STT --------------------------</span></span>
<span id="cb11-10"><a href="#cb11-10" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb11-11"><a href="#cb11-11" aria-hidden="true" tabindex="-1"></a>speech_file <span class="op">=</span> <span class="bu">open</span>(<span class="st">"data/제84주년_31절_기념사_노무현.mp3"</span>, <span class="st">"rb"</span>)</span>
<span id="cb11-12"><a href="#cb11-12" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb11-13"><a href="#cb11-13" aria-hidden="true" tabindex="-1"></a>response <span class="op">=</span> openai.Audio.transcribe(<span class="st">"whisper-1"</span>, speech_file)</span>
<span id="cb11-14"><a href="#cb11-14" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb11-15"><a href="#cb11-15" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb11-16"><a href="#cb11-16" aria-hidden="true" tabindex="-1"></a><span class="cf">with</span> <span class="bu">open</span>(<span class="st">"data/stt_audio.txt"</span>, <span class="st">"w"</span>) <span class="im">as</span> <span class="bu">file</span>:</span>
<span id="cb11-17"><a href="#cb11-17" aria-hidden="true" tabindex="-1"></a> <span class="bu">file</span>.write(response[<span class="st">"text"</span>])</span>
<span id="cb11-18"><a href="#cb11-18" aria-hidden="true" tabindex="-1"></a> </span></code></pre></div>
</details>
</div>
</section>
<section id="후처리" class="level2" data-number="5.3">
<h2 data-number="5.3"><span class="header-section-number">5.3</span> 후처리</h2>
<p>STT를 통해 나온 텍스트는 사람이 읽기에는 가독성이 무척 떨어지는 텍스트에 불과하다. 이를 읽을 수 있도록 후처리를 한다.</p>
<div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-1-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-1" role="tab" aria-controls="tabset-1-1" aria-selected="true">음성원고 원문</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-1-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-2" role="tab" aria-controls="tabset-1-2" aria-selected="false">Whisper 텍스트</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-1-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-3" role="tab" aria-controls="tabset-1-3" aria-selected="false">챗 GPT 후가공</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-1-4-tab" data-bs-toggle="tab" data-bs-target="#tabset-1-4" role="tab" aria-controls="tabset-1-4" aria-selected="false">Whisper 텍스트</a></li></ul>
<div class="tab-content">
<div id="tabset-1-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-1-1-tab">
<p>존경하는 국민 여러분,</p>
<p>오늘 여든 네 번째 3, 1절을 맞아 나라를 위해 희생하고 헌신하신 애국선열들께 한없는 감사와 경의를 표합니다. 독립유공자와 유가족 여러분에게도 존경과 감사의 말씀을 드립니다.</p>
<p>기미년 오늘, 우리는 일제의 총칼에 맞서 맨주먹으로 분연히 일어섰습니다. 대한독립 만세 소리가 전국 방방곡곡을 뒤덮었고, 우리는 자주독립 의지를 세계만방에 알렸습니다. 3, 1운동을 계기로 국내외의 독립투쟁은 더욱 힘차게 전개되었습니다. 상해에 대한민국 임시정부가 세워졌고, 우리는 마침내 빼앗긴 국권을 되찾았습니다.</p>
<p>3, 1정신은 끊임없는 도전을 슬기롭게 극복해 온 우리 민족의 자랑입니다. 우리는 이러한 빛나는 정신을 계승하여 전쟁의 폐허를 딛고 세계 12위의 경제강국으로 발돋움했습니다. 4, 19 혁명과 광주민주화운동, 6월 민주항쟁을 거쳐 민주주의와 인권을 쟁취해 냈습니다. 오늘의 참여정부는 바로 그 위대한 역사의 연장선 위에 서 있습니다.</p>
<p>참여정부의 출범으로 이제 아픔의 근, 현대사는 막을 내리게 되었습니다. 우리의 지난날은 선열들의 고귀한 희생에도 불구하고 좌절과 굴절을 겪어야 했습니다. 정의는 패배했고 기회주의가 득세했습니다.</p>
<p>그러나 이제 비로소 역사적 전환점이 마련되었습니다. 국민이 진정 주인으로 대접받는 시대가 열린 것입니다.</p>
<p>참여정부에서는 권력에 아부하는 사람들이 더 이상 설 땅이 없을 것입니다. 오로지 성실하게 일하고 정정당당하게 승부하는 사람들이 성공하는 시대가 열릴 것입니다. 그것이 바로 선열들의 희생에 보답하는 길이자 저와 참여정부에게 주어진 역사적 소명입니다.</p>
<p>국민 여러분,</p>
<p>지금 우리는 세계사의 새로운 흐름과 마주하고 있습니다. 동북아 시대의 도래가 바로 그것입니다. 동북아시아는 근대 이후 세계의 변방으로만 머물러 왔습니다. 그러나 이제 유럽연합, 북미지역과 함께 세계경제의 3대 축으로 부상하고 있습니다. 앞으로 20년 후에는 세계경제의 3분의 1을 차지하게 된다는 전망도 있습니다. 민족웅비의 크나큰 기회가 우리에게 다가오고 있는 것입니다.</p>
<p>우리는 동북아시대의 중심국가로 도약할 수 있는 충분한 조건을 갖추고 있습니다. 우선, 지리적으로 중심에 자리잡고 있습니다. 서울에서 3시간의 비행거리 안에 인구 100만 이상의 도시가 마흔 세 개나 됩니다. 중국과 러시아의 인력과 자원, 그리고 일본의 기술을 접목할 수 있는 유리한 위치입니다. 대륙과 해양을 잇는 지정학적 이점도 가지고 있습니다. 하늘과 바다와 땅에 걸친 물류와, 세계 일류의 정보화 기반과 역량을 두루 갖추고 있습니다.</p>
<p>한반도는 더 이상 세계의 변방이 아닙니다. 남북 철도가 연결되고 철의 실크로드가 열리면 광활한 대륙을 향해 나아갈 수 있습니다. 그 곳에는 중국대륙이라는 새로운 기회가 기다리고 있습니다. 시베리아와 중앙아시아의 무한한 자원도 있습니다.</p>
<p>한반도가 대륙과 해양을 잇는 물류와 금융과 생산 거점으로 거듭나게 됩니다. 이것이 바로 우리 앞에 있는 미래입니다. 우리에게는 이를 현실로 만들어야 하는 책무가 주어져 있습니다.</p>
<p>존경하는 국민 여러분,</p>
<p>그러나 동북아 중심국가로 나아가기 위해서는 반드시 해야 할 일이 있습니다. 한반도에 평화를 정착시키는 일입니다. 남북이 대립하며 한반도에 긴장이 고조되는 한, 동북아 중심국가의 꿈은 실현될 수 없습니다. 동북아의 평화와 번영도 기대하기 어렵습니다.</p>
<p>그동안 우리는 한반도에 평화를 정착시키기 위해 많은 노력을 기울여 왔습니다. 남북간에 대화와 교류가 빈번해졌고 이산가족이 만나고 있습니다. 최근에는 육로도 열렸습니다.</p>
<p>그러나 아직 풀어야 할 숙제가 많습니다. 특히 북핵 문제는 시급히 해결해야 할 과제입니다.</p>
<p>저는 북한의 핵 개발에 단호히 반대합니다. 그러나 이 문제는 반드시 평화적으로 해결되어야 합니다. 어떠한 이유로든 한반도의 평화가 깨어진다면, 우리는 그 엄청난 재앙을 감당할 수 없습니다. 한반도의 평화와 국민의 안전을 지키는 것은 대통령의 가장 큰 책무입니다.</p>
<p>앞으로 남북관계는 국민 여러분께 소상히 보고 드리고, 국민적 합의를 바탕으로 추진해 나가겠습니다. 야당의 협력도 적극적으로 구해나갈 것입니다. 미국과 일본, 중국, 러시아 등 주변국과, EU를 비롯한 국제사회와도 능동적으로 협력해나갈 것입니다.</p>
<p>국민 여러분,</p>
<p>한반도에 평화를 정착시키는 일 못지 않게 중요한 것은 국민의 힘을 하나로 모으는 일입니다. 84년 전 오늘, 우리의 선열들은 한마음 한뜻으로 독립운동에 나섰습니다. 빈부와 귀천, 남녀와 노소, 지역과 종교의 차이는 없었습니다. 나라의 독립과 민족의 자존심을 되찾는 데 하나가 되었습니다.</p>
<p>오늘을 사는 우리도 지역과 계층과 세대를 넘어 하나가 되어야 합니다. 내부에 분열과 반목이 있으면 세계경쟁에서 뒤쳐질 수밖에 없습니다. 국권까지 상실했던 100년 전의 실패가 되풀이될 수도 있습니다. 지금이야말로 3, 1정신을 되돌아보며 역사의 교훈을 되새겨야 할 때입니다.</p>
<p>마음속에 지역갈등의 응어리가 있다면 가슴을 열고 풀어야 합니다. 어른은 젊은이의 목소리에 귀기울이고 젊은이는 어른의 경험을 구해야 합니다. 차별 받고 소외되어 온 사람들에게 더 많은 관심과 노력을 기울여야 합니다. 국민 모두가 참된 주인으로서 국정에 참여하고, 온 국민의 힘을 하나로 모으는 국민참여시대를 힘차게 열어가야겠습니다.</p>
<p>개혁 또한 멈출 수 없는 우리 시대의 과제입니다. 무엇보다 정치와 행정이 바뀌어야 합니다. 이른바 몇몇 ’권력기관’은 그동안 정권을 위해 봉사해 왔던 것이 사실입니다. 그래서 내부의 질서가 무너지고 국민의 신뢰를 잃었습니다. 이제 이들 ’권력기관’은 국민을 위한 기관으로 거듭나야 합니다. 참여정부는 더 이상 ’권력기관’에 의존하지 않을 것입니다. 언제나 정정당당한 정부로서 국민 앞에 설 것입니다.</p>
<p>참여정부는 공정하고 투명한 시장질서, 노사화합, 기술혁신, 지역 균형발전 속에 정직하고 성실하게 사는 사람들이 성공하는 나라를 만들어갈 것입니다. 이를 위해 원칙과 신뢰, 공정과 투명, 대화와 타협, 분권과 자율의 문화를 사회 곳곳에 뿌리내릴 것입니다.</p>
<p>존경하는 국민 여러분!</p>
<p>우리에게는 선열들이 보여준 자주독립의 기상과 대동단결의 지혜가 있습니다. 오늘 3, 1절을 맞아 일제의 총칼에 항거하며 이루고자 했던 선열들의 뜻을 다시 한번 가슴에 새깁시다. 국민통합과 개혁으로 평화와 번영의 동북아시대를 열어갑시다. 자랑스런 대한민국을 우리 후손들에게 물려줍시다.</p>
</div>
<div id="tabset-1-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-1-2-tab">
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb12"><pre class="sourceCode r cell-code"><code class="sourceCode r"><span id="cb12-1"><a href="#cb12-1" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(tidyverse)</span>
<span id="cb12-2"><a href="#cb12-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb12-3"><a href="#cb12-3" aria-hidden="true" tabindex="-1"></a>stt_txt <span class="ot"><-</span> <span class="fu">read_lines</span>(<span class="st">"data/stt_audio.txt"</span>)</span>
<span id="cb12-4"><a href="#cb12-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb12-5"><a href="#cb12-5" aria-hidden="true" tabindex="-1"></a>stt_txt</span>
<span id="cb12-6"><a href="#cb12-6" aria-hidden="true" tabindex="-1"></a><span class="co">#> [1] "존경하는 국민여러분 오늘 84번째 3.21절을 맞아 나라를 위해 희생하고 헌신하신 애국선열들께 한없는 감사와 경의를 표합니다 독립유공자와 유가족 여러분에게도 존경과 감사의 말씀을 드립니다 3.22년 오늘 우리는 일제의 총칼에 맞서 맨주먹으로 분연히 일어섰습니다 대한독립만세 소리가 전국 방방곡곡을 뒤덮었고 우리는 자주독립의지를 세계 만방에 알렸습니다 3.21운동을 계기로 국내외의 독립투쟁은 더욱 힘차게 전개되었습니다 상해 대한민국 임시정부가 세워졌고 우리는 마침내 빼앗긴 국권을 되찾았습니다 3.21정신은 끊임없는 도전을 슬기롭게 극복해온 우리 민족의 자랑입니다 우리는 이러한 빛나는 정신을 계승하여 전쟁의 폐허를 딛고 세계 12위의 경제강국으로 발돋움했습니다 4.19혁명과 광주민주화운동 6월 민주항쟁을 거쳐서 민주주의와 인권을 쟁취해냈습니다 오늘의 참여정부는 바로 그 위대한 역사의 연장선 위에 서 있습니다 참여정부의 출범으로 이제 아픔의 근현대사는 막을 내리게 되었습니다 우리의 지난 날은 선열들의 고귀한 희생에도 불구하고 좌절과 굴절을 겪어야 했습니다 정의는 패배했고 기회주의가 덕세했습니다 그러나 이제 비로소 역사적 전환점이 마련됐습니다 국민이 진정 주인으로 대접받는 시대가 열릴 것입니다 참여정부에서는 권력의 아부하는 사람들이 더 이상 설 땅이 없을 것입니다 오로지 성실하게 일하고 정정당당하게 선고하는 사람들이 성공하는 시대가 열릴 것입니다 그것이 바로 선열들의 희생에 보답하는 길이자 저와 참여정부에게 주어진 역사의 소명이라고 생각합니다 존경하는 국민 여러분 지금 우리는 세계사의 새로운 흐름과 마주하고 있습니다 동북아 시대의 도래가 바로 그것입니다 동북아시아는 근대 이후 세계의 변방으로만 머물러 왔습니다 그러나 이제 유럽연합, 북미 지역과 함께 세계 경제의 3대 축으로 부상하고 있습니다 앞으로 20년 후에는 세계 경제의 3분의 1을 차지하게 된다는 전망도 있습니다 민족웅비의 크나큰 기회가 우리에게 다가오고 있는 것입니다 우리는 동북아 시대의 중심국가로 돌아갈 수 있는 충분한 조건을 갖추고 있습니다 우선 지리적으로 중심에 자리 잡고 있습니다 서울에서 3시간의 비행거리 안에 인구 100만 이상의 도시가 40개나 됩니다 중국과 러시아의 인력과 자원 그리고 일본의 기술을 접목할 수 있는 유리한 위치에 서 있습니다 대륙과 해양을 잇는 지정학적인 이점도 아울러 가지고 있습니다 하늘과 바다와 땅에 걸친 물류와 세계 인류의 정보와 기반과 역량을 두루 갖추고 있습니다 한반도는 더 이상 세계의 변방이 아닙니다 남북철도가 연결되고 철의 실크로드가 열리면 광활한 대륙을 향해서 나아갈 수 있습니다 이곳에는 중국 대륙이라는 새로운 기회가 기다리고 있습니다 시베리아와 중앙아시아의 무한한 자원도 있습니다 한반도가 대륙과 해양을 잇는 물류와 금융과 생산의 거점으로서 거듭나게 될 것입니다 이것이 바로 우리 앞에 있는 미래입니다 우리에게는 이를 현실로 만들어야 하는 책무가 주어져 있습니다 존경하는 국민 여러분 그러나 동북아 중심국가로 나아가기 위해서는 반드시 해야 할 일이 있습니다 한반도의 평화를 정착시키는 일입니다 남북이 대립하며 한반도의 긴장이 고조되는 한 동북아 중심국가의 꿈은 실현될 수 없습니다 동북아의 평화와 번영도 기대하기 어렵습니다 그동안 우리는 한반도의 평화를 정착시키기 위해서 많은 노력을 기울여 왔습니다 남북 간의 대화와 교류가 빈번해졌고 이산가족이 만나고 있습니다 최근에는 육로도 열리고 있습니다 그러나 아직 풀어야 할 숙제가 많이 있습니다 특히 북한 핵 문제는 시급히 해결해야 할 과제입니다 저는 북한의 핵 개발에 단호히 반대합니다 그러나 이 문제는 반드시 평화적으로 해결돼야 합니다 어떠한 이유로든 한반도의 평화가 깨어진다면 우리는 그 엄청난 재앙을 감당해낼 수가 없습니다 한반도의 평화와 국민의 안전을 지키는 것은 대통령의 가장 큰 책무입니다 앞으로 남북관계는 국민 여러분께 하나하나 소상히 보고드리고 국민적 합의를 바탕으로 추진해 나가겠습니다 야당의 협력도 적극적으로 구해나갈 것입니다 미국과 일본, 중국, 러시아 등 주변국과 이유를 비롯한 국제사회와도 능동적으로 협력해 나가겠습니다 존경하는 국민 여러분 한반도의 평화를 정착시키는 일 못지않게 중요한 것은 국민의 힘을 하나로 모으는 것입니다 84년 전 오늘 우리의 선열들은 한마음 한뜻으로 독립운동에 나섰습니다 빈부와 귀천, 남녀와 노소, 지역과 종교의 차이도 없었습니다 나라의 독립과 민족의 자존심을 되찾는데 하나가 되었습니다 오늘을 사는 우리도 지역과 계층과 세대를 넘어서 하나가 되어야 합니다 내부의 분열과 반목이 있으면 세계 경쟁에서 뒤처질 수밖에 없을 것입니다 국권까지 상실했던 100년 전의 실패가 되풀이 될 수도 있습니다 그야말로 3.1 정신을 되돌아보며 역사의 교훈을 되새겨야 할 때입니다 마음속에 지역 갈등의 응어리가 있다면 가슴을 열고 풀어야 합니다 어른은 젊은이의 목소리를 귀 기울이시고 젊은이는 어른들의 경험을 구해야 합니다 차별받고 제가 박수칠 사의를 드리는데 익숙지를 못합니다 차별받고 소외되어 온 사람들에게 더 많은 관심과 노력을 기울여야 합니다 국민 모두가 참된 주인으로서 국정에 참여하고 온 국민의 힘을 하나로 모으는 국민참여시대를 힘차게 열어가야겠습니다 개혁 또한 멈출 수 없는 우리 시대의 과제입니다 무엇보다도 정치와 행정이 바뀌어야 합니다 이른바 몇몇 권력기관은 그동안에 정권을 위해 봉사해왔던 것이 사실입니다 그래서 내부의 질서가 무너지고 국민의 신뢰를 잃었습니다 이제 이들 권력기관은 국민을 위한 기관으로 다시 태어나야 합니다 참여정부는 더 이상 권력기관에 의존하지 않을 것입니다 언제나 정정당당한 정부로서 국민 앞에 설 것입니다 참여정부는 공정하고 투명한 시장질서와 노사화합, 기술혁신, 지역의 균형발전 속에 정직하고 성실하게 사는 사람들이 성공하는 나라를 만들어갈 것입니다 이를 위해서 원칙과 신뢰, 공정과 투명, 대화와 타협 그리고 분권과 자율의 문화를 사회 곳곳에 뿌리내릴 것입니다 존경하는 국민 여러분 우리에게는 선열들이 보여준 자주독립의 기상과 대동단결의 지혜가 있습니다 오늘 3.1절을 맞아 1절의 총칼에 항거하며 이루고자 했던 선열들의 뜻을 다시 한번 가슴에 새깁시다 국민 통합과 개혁으로 평화와 번영의 동북아 시대를 열어갑시다 자랑스런 대한민국을 우리 후손들에게 물려줍시다 감사합니다"</span></span></code></pre></div>
</details>
</div>
</div>
<div id="tabset-1-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-1-3-tab">
<div class="callout callout-style-default callout-note callout-titled">
<div class="callout-header d-flex align-content-center">
<div class="callout-icon-container">
<i class='callout-icon'></i>
</div>
<div class="callout-title-container flex-fill">
프롬프트: 다음 텍스트에 구두점을 넣고 문단별로 나눠 가독성을 높혀주세요. <br><br> “존경하는 국민여러분 오늘 84번째 ..<중략>.. 물려줍시다 감사합니다”
</div>
</div>
<div class="callout-body-container callout-body">
<p>“존경하는 국민여러분, 오늘 84번째 3.1절을 맞아, 나라를 위해 희생하고 헌신하신 애국선열들께 한없는 감사와 경의를 표합니다. 독립유공자와 유가족 여러분에게도 존경과 감사의 말씀을 드립니다.</p>
<p>3.1 1922년 오늘, 우리는 일제의 총칼에 맞서 맨주먹으로 분연히 일어섰습니다. 대한독립만세 소리가 전국 방방곡곡을 뒤덮었고, 우리는 자주독립의지를 세계 만방에 알렸습니다. 3.1운동을 계기로 국내외의 독립투쟁은 더욱 힘차게 전개되었습니다. 상해 대한민국 임시정부가 세워졌고, 우리는 마침내 빼앗긴 국권을 되찾았습니다.</p>
<p>3.1정신은 끊임없는 도전을 슬기롭게 극복해온 우리 민족의 자랑입니다. 우리는 이러한 빛나는 정신을 계승하여 전쟁의 폐허를 딛고 세계 12위의 경제강국으로 발돋움했습니다. 4.19혁명과 광주민주화운동, 6월 민주항쟁을 거쳐서 민주주의와 인권을 쟁취해냈습니다. 오늘의 참여정부는 바로 그 위대한 역사의 연장선 위에 서 있습니다.</p>
<p>참여정부의 출범으로, 이제 아픔의 근현대사는 막을 내리게 되었습니다. 우리의 지난 날은 선열들의 고귀한 희생에도 불구하고 좌절과 굴절을 겪어야 했습니다. 정의는 패배했고 기회주의가 덕세했습니다. 그러나 이제 비로소 역사적 전환점이 마련됐습니다. 국민이 진정 주인으로 대접받는 시대가 열릴 것입니다. 참여정부에서는 권력의 아부하는 사람들이 더 이상 설 땅이 없을 것입니다. 오로지 성실하게 일하고 정정당당하게 선고하는 사람들이 성공하는 시대가 열릴 것입니다. 그것이 바로 선열들의 희생에 보답하는 길이자, 저와 참여정부에게 주어진 역사의 소명이라고 생각합니다.</p>
<p>존경하는 국민 여러분, 지금 우리는 세계사의 새로운 흐름과 마주하고 있습니다. 동북아 시대의 도래가 바로 그것입니다. 동북아시아는 근대 이후 세계의 변방으로만 머물러 왔습니다. 그러나 이제 유럽연합, 북미 지역과 함께 세계 경제의 3대 축으로 부상하고 있습니다. 앞으로 20년 후에는 세계 경제의 3분의 1을 차지하게 된다는 전망도 있습니다.</p>
<p>민족웅비의 크나큰 기회가 우리에게 다가오고 있는 것입니다. 우리는 동북아 시대의 중심국가로 돌아갈 수 있는 충분한 조건들의 꿈을 생각해 보겠습니다. 이 땅에 건설한 자유와 평화, 독립과 민주주의의 신성한 꿈입니다. 우리는 그 꿈을 계승하고 이어가야 합니다.</p>
<p>참여정부는 모든 일을 국민과 함께 할 것입니다. 어려운 일에도 함께 참여하고, 희망을 나누는 일에도 함께 참여하겠습니다. 정의를 위해 함께 서고, 기회를 위해 함께 투쟁하겠습니다. 바로 그것이 참여정부의 이념이고 실천의 방향입니다.</p>
<p>모든 국민이 참여하는 민주주의, 그것이 바로 참여정부의 민주주의입니다. 대통령으로서 제게 주어진 역사의 소명을 다할 것입니다. 국민이 주인이 되는 참여정부, 그것을 만들어 가겠습니다. 국민 여러분의 도움과 협력이 절실히 필요합니다.</p>
<p>국민 여러분, 오늘 3.1절을 맞아 이 자리에 함께 해주신 데 대해 깊은 감사의 말씀을 드립니다. 우리 모두가 동행하며, 선열들의 꿈을 이루어 나가는 큰 한 걸음을 내딛을 수 있기를 기원합니다. 감사합니다.</p>
</div>
</div>
</div>
<div id="tabset-1-4" class="tab-pane" role="tabpanel" aria-labelledby="tabset-1-4-tab">
<p><code>gpt-4</code>, 특히 <code>gpt-4-0314</code> 모형을 사용하여 API로 앞서 Whisper로 STT하여 받아쓰기한 사항을 윤문하여 연설문을 보기 좋게 다시 작성한다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb13"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb13-1"><a href="#cb13-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> openai</span>
<span id="cb13-2"><a href="#cb13-2" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> dotenv <span class="im">import</span> load_dotenv</span>
<span id="cb13-3"><a href="#cb13-3" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> os</span>
<span id="cb13-4"><a href="#cb13-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-5"><a href="#cb13-5" aria-hidden="true" tabindex="-1"></a><span class="co"># API KEY ----------------------</span></span>
<span id="cb13-6"><a href="#cb13-6" aria-hidden="true" tabindex="-1"></a>load_dotenv()</span>
<span id="cb13-7"><a href="#cb13-7" aria-hidden="true" tabindex="-1"></a>openai.api_key <span class="op">=</span> os.getenv(<span class="st">'OPENAI_API_KEY'</span>)</span>
<span id="cb13-8"><a href="#cb13-8" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-9"><a href="#cb13-9" aria-hidden="true" tabindex="-1"></a><span class="co"># 텍스트 불러오기 --------------------------</span></span>
<span id="cb13-10"><a href="#cb13-10" aria-hidden="true" tabindex="-1"></a><span class="cf">with</span> <span class="bu">open</span>(<span class="st">"data/stt_audio.txt"</span>, <span class="st">"r"</span>) <span class="im">as</span> <span class="bu">file</span>:</span>
<span id="cb13-11"><a href="#cb13-11" aria-hidden="true" tabindex="-1"></a> content <span class="op">=</span> <span class="bu">file</span>.read()</span>
<span id="cb13-12"><a href="#cb13-12" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-13"><a href="#cb13-13" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(content)</span>
<span id="cb13-14"><a href="#cb13-14" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-15"><a href="#cb13-15" aria-hidden="true" tabindex="-1"></a><span class="co"># 텍스트 윤문 --------------------------</span></span>
<span id="cb13-16"><a href="#cb13-16" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-17"><a href="#cb13-17" aria-hidden="true" tabindex="-1"></a>prompt <span class="op">=</span> <span class="ss">f'다음 텍스트에 구두점을 넣고 문단별로 나눠 가독성을 높혀주세요. </span><span class="ch">\n\n</span><span class="sc">{</span>content<span class="sc">}</span><span class="ss">'</span></span>
<span id="cb13-18"><a href="#cb13-18" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-19"><a href="#cb13-19" aria-hidden="true" tabindex="-1"></a>speech_response <span class="op">=</span> openai.ChatCompletion.create(</span>
<span id="cb13-20"><a href="#cb13-20" aria-hidden="true" tabindex="-1"></a> model <span class="op">=</span> <span class="st">"gpt-4-0314"</span>,</span>
<span id="cb13-21"><a href="#cb13-21" aria-hidden="true" tabindex="-1"></a> messages <span class="op">=</span> [</span>
<span id="cb13-22"><a href="#cb13-22" aria-hidden="true" tabindex="-1"></a> {<span class="st">"role"</span>: <span class="st">"system"</span>, <span class="st">"content"</span>: <span class="st">"You are a Korean language expert."</span>},</span>
<span id="cb13-23"><a href="#cb13-23" aria-hidden="true" tabindex="-1"></a> {<span class="st">"role"</span>: <span class="st">"user"</span>, <span class="st">"content"</span>: prompt}</span>
<span id="cb13-24"><a href="#cb13-24" aria-hidden="true" tabindex="-1"></a> ],</span>
<span id="cb13-25"><a href="#cb13-25" aria-hidden="true" tabindex="-1"></a> max_tokens <span class="op">=</span> <span class="dv">5000</span>,</span>
<span id="cb13-26"><a href="#cb13-26" aria-hidden="true" tabindex="-1"></a> temperature <span class="op">=</span> <span class="dv">0</span></span>
<span id="cb13-27"><a href="#cb13-27" aria-hidden="true" tabindex="-1"></a>)</span>
<span id="cb13-28"><a href="#cb13-28" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-29"><a href="#cb13-29" aria-hidden="true" tabindex="-1"></a><span class="bu">print</span>(speech_response[<span class="st">"choices"</span>][<span class="dv">0</span>][<span class="st">'message'</span>][<span class="st">'content'</span>])</span>
<span id="cb13-30"><a href="#cb13-30" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb13-31"><a href="#cb13-31" aria-hidden="true" tabindex="-1"></a><span class="cf">with</span> <span class="bu">open</span>(<span class="st">"data/stt_audio_gpt4.txt"</span>, <span class="st">"w"</span>) <span class="im">as</span> <span class="bu">file</span>:</span>
<span id="cb13-32"><a href="#cb13-32" aria-hidden="true" tabindex="-1"></a> <span class="bu">file</span>.write(speech_response[<span class="st">"choices"</span>][<span class="dv">0</span>][<span class="st">'message'</span>][<span class="st">'content'</span>])</span></code></pre></div>
</details>
</div>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb14"><pre class="sourceCode r cell-code"><code class="sourceCode r"><span id="cb14-1"><a href="#cb14-1" aria-hidden="true" tabindex="-1"></a>gpt4_txt <span class="ot"><-</span> <span class="fu">read_lines</span>(<span class="st">"data/stt_audio_gpt4.txt"</span>)</span>
<span id="cb14-2"><a href="#cb14-2" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb14-3"><a href="#cb14-3" aria-hidden="true" tabindex="-1"></a>glue<span class="sc">::</span><span class="fu">glue</span>(<span class="st">"{gpt4_txt}"</span>)</span>
<span id="cb14-4"><a href="#cb14-4" aria-hidden="true" tabindex="-1"></a><span class="co">#> 존경하는 국민여러분, 오늘 84번째 3.1절을 맞아 나라를 위해 희생하고 헌신하신 애국선열들께 한없는 감사와 경의를 표합니다. 독립유공자와 유가족 여러분에게도 존경과 감사의 말씀을 드립니다.</span></span>
<span id="cb14-5"><a href="#cb14-5" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-6"><a href="#cb14-6" aria-hidden="true" tabindex="-1"></a><span class="co">#> 3.1운동 102년 전 오늘, 우리는 일제의 총칼에 맞서 맨주먹으로 분연히 일어섰습니다. 대한독립만세 소리가 전국 방방곡곡을 뒤덮었고, 우리는 자주독립의지를 세계 만방에 알렸습니다. 3.1운동을 계기로 국내외의 독립투쟁은 더욱 힘차게 전개되었습니다. 상해 대한민국 임시정부가 세워졌고, 우리는 마침내 빼앗긴 국권을 되찾았습니다.</span></span>
<span id="cb14-7"><a href="#cb14-7" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-8"><a href="#cb14-8" aria-hidden="true" tabindex="-1"></a><span class="co">#> 3.1정신은 끊임없는 도전을 슬기롭게 극복해온 우리 민족의 자랑입니다. 우리는 이러한 빛나는 정신을 계승하여 전쟁의 폐허를 딛고 세계 12위의 경제강국으로 발돋움했습니다. 4.19혁명과 광주민주화운동, 6월 민주항쟁을 거쳐서 민주주의와 인권을 쟁취해냈습니다. 오늘의 참여정부는 바로 그 위대한 역사의 연장선 위에 서 있습니다.</span></span>
<span id="cb14-9"><a href="#cb14-9" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-10"><a href="#cb14-10" aria-hidden="true" tabindex="-1"></a><span class="co">#> 참여정부의 출범으로 이제 아픔의 근현대사는 막을 내리게 되었습니다. 우리의 지난 날은 선열들의 고귀한 희생에도 불구하고 좌절과 굴절을 겪어야 했습니다. 정의는 패배했고 기회주의가 덕세했습니다. 그러나 이제 비로소 역사적 전환점이 마련됐습니다. 국민이 진정 주인으로 대접받는 시대가 열릴 것입니다. 참여정부에서는 권력의 아부하는 사람들이 더 이상 설 땅이 없을 것입니다. 오로지 성실하게 일하고 정정당당하게 선고하는 사람들이 성공하는 시대가 열릴 것입니다. 그것이 바로 선열들의 희생에 보답하는 길이자 저와 참여정부에게 주어진 역사의 소명이라고 생각합니다.</span></span>
<span id="cb14-11"><a href="#cb14-11" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-12"><a href="#cb14-12" aria-hidden="true" tabindex="-1"></a><span class="co">#> 존경하는 국민 여러분, 지금 우리는 세계사의 새로운 흐름과 마주하고 있습니다. 동북아 시대의 도래가 바로 그것입니다. 동북아시아는 근대 이후 세계의 변방으로만 머물러 왔습니다. 그러나 이제 유럽연합, 북미 지역과 함께 세계 경제의 3대 축으로 부상하고 있습니다. 앞으로 20년 후에는 세계 경제의 3분의 1을 차지하게 된다는 전망도 있습니다. 민족웅비의 크나큰 기회가 우리에게 다가오고 있는 것입니다.</span></span>
<span id="cb14-13"><a href="#cb14-13" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-14"><a href="#cb14-14" aria-hidden="true" tabindex="-1"></a><span class="co">#> 우리는 동북아 시대의 중심국가로 돌아갈 수 있는 충분한 조건을 갖추고 있습니다. 우선 지리적으로 중심에 자리 잡고 있습니다. 서울에서 3시간의 비행거리 안에 인구 100만 이상의 도시가 40개나 됩니다. 중국과 러시아의 인력과 자원 그리고 일본의 기술을 접목할 수 있는 유리한 위치에 서 있습니다. 대륙과 해양을 잇는 지정학적인 이점도 아울러 가지고 있습니다. 하늘과 바다와 땅에 걸친 물류와 세계 인류의 정보와 기반과 역량을 두루 갖추고 있습니다.</span></span>
<span id="cb14-15"><a href="#cb14-15" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-16"><a href="#cb14-16" aria-hidden="true" tabindex="-1"></a><span class="co">#> 한반도는 더 이상 세계의 변방이 아닙니다. 남북철도가 연결되고 철의 실크로드가 열리면 광활한 대륙을 향해서 나아갈 수 있습니다. 이곳에는 중국 대륙이라는 새로운 기회가 기다리고 있습니다. 시베리아와 중앙아시아의 무한한 자원도 있습니다. 한반도가 대륙과 해양을 잇는 물류와 금융과 생산의 거점으로서 거듭나게 될 것입니다. 이것이 바로 우리 앞에 있는 미래입니다. 우리에게는 이를 현실로 만들어야 하는 책무가 주어져 있습니다.</span></span>
<span id="cb14-17"><a href="#cb14-17" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-18"><a href="#cb14-18" aria-hidden="true" tabindex="-1"></a><span class="co">#> 존경하는 국민 여러분, 그러나 동북아 중심국가로 나아가기 위해서는 반드시 해야 할 일이 있습니다. 한반도의 평화를 정착시키는 일입니다. 남북이 대립하며 한반도의 긴장이 고조되는 한 동북아 중심국가의 꿈은 실현될 수 없습니다. 동북아의 평화와 번영도 기대하기 어렵습니다.</span></span>
<span id="cb14-19"><a href="#cb14-19" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-20"><a href="#cb14-20" aria-hidden="true" tabindex="-1"></a><span class="co">#> 그동안 우리는 한반도의 평화를 정착시키기 위해서 많은 노력을 기울여 왔습니다. 남북 간의 대화와 교류가 빈번해졌고 이산가족이 만나고 있습니다. 최근에는 육로도 열리고 있습니다. 그러나 아직 풀어야 할 숙제가 많이 있습니다. 특히 북한 핵 문제는 시급히 해결해야 할 과제입니다. 저는 북한의 핵 개발에 단호히 반대합니다. 그러나 이 문제는 반드시 평화적으로 해결돼야 합니다. 어떠한 이유로든 한반도의 평화가 깨어진다면 우리는 그 엄청난 재앙을 감당해낼 수가 없습니다.</span></span>
<span id="cb14-21"><a href="#cb14-21" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-22"><a href="#cb14-22" aria-hidden="true" tabindex="-1"></a><span class="co">#> 한반도의 평화와 국민의 안전을 지키는 것은 대통령의 가장 큰 책무입니다. 앞으로 남북관계는 국민 여러분께 하나하나 소상히 보고드리고 국민적 합의를 바탕으로 추진해 나가겠습니다. 야당의 협력도 적극적으로 구해나갈 것입니다. 미국과 일본, 중국, 러시아 등 주변국과 이유를 비롯한 국제사회와도 능동적으로 협력해 나가겠습니다.</span></span>
<span id="cb14-23"><a href="#cb14-23" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-24"><a href="#cb14-24" aria-hidden="true" tabindex="-1"></a><span class="co">#> 존경하는 국민 여러분, 한반도의 평화를 정착시키는 일 못지않게 중요한 것은 국민의 힘을 하나로 모으는 것입니다. 84년 전 오늘 우리의 선열들은 한마음 한뜻으로 독립운동에 나섰습니다. 빈부와 귀천, 남녀와 노소, 지역과 종교의 차이도 없었습니다. 나라의 독립과 민족의 자존심을 되찾는데 하나가 되었습니다.</span></span>
<span id="cb14-25"><a href="#cb14-25" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-26"><a href="#cb14-26" aria-hidden="true" tabindex="-1"></a><span class="co">#> 오늘을 사는 우리도 지역과 계층과 세대를 넘어서 하나가 되어야 합니다. 내부의 분열과 반목이 있으면 세계 경쟁에서 뒤처질 수밖에 없을 것입니다. 국권까지 상실했던 100년 전의 실패가 되풀이 될 수도 있습니다. 그야말로 3.1 정신을 되돌아보며 역사의 교훈을 되새겨야 할 때입니다.</span></span>
<span id="cb14-27"><a href="#cb14-27" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-28"><a href="#cb14-28" aria-hidden="true" tabindex="-1"></a><span class="co">#> 마음속에 지역 갈등의 응어리가 있다면 가슴을 열고 풀어야 합니다. 어른은 젊은이의 목소리를 귀 기울이시고 젊은이는 어른들의 경험을 구해야 합니다. 차별받고 제가 박수칠 사의를 드리는데 익숙지를 못합니다. 차별받고 소외되어 온 사람들에게 더 많은 관심과 노력을 기울여야 합니다. 국민 모두가 참된 주인으로서 국정에 참여하고 온 국민의 힘을 하나로 모으는 국민참여시대를 힘차게 열어가야겠습니다.</span></span>
<span id="cb14-29"><a href="#cb14-29" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-30"><a href="#cb14-30" aria-hidden="true" tabindex="-1"></a><span class="co">#> 개혁 또한 멈출 수 없는 우리 시대의 과제입니다. 무엇보다도 정치와 행정이 바뀌어야 합니다. 이른바 몇몇 권력기관은 그동안에 정권을 위해 봉사해왔던 것이 사실입니다. 그래서 내부의 질서가 무너지고 국민의 신뢰를 잃었습니다. 이제 이들 권력기관은 국민을 위한 기관으로 다시 태어나야 합니다. 참여정부는 더 이상 권력기관에 의존하지 않을 것입니다. 언제나 정정당당한 정부로서 국민 앞에 설 것입니다.</span></span>
<span id="cb14-31"><a href="#cb14-31" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-32"><a href="#cb14-32" aria-hidden="true" tabindex="-1"></a><span class="co">#> 참여정부는 공정하고 투명한 시장질서와 노사화합, 기술혁신, 지역의 균형발전 속에 정직하고 성실하게 사는 사람들이 성공하는 나라를 만들어갈 것입니다. 이를 위해서 원칙과 신뢰, 공정과 투명, 대화와 타협 그리고 분권과 자율의 문화를 사회 곳곳에 뿌리내릴 것입니다.</span></span>
<span id="cb14-33"><a href="#cb14-33" aria-hidden="true" tabindex="-1"></a><span class="co">#> </span></span>
<span id="cb14-34"><a href="#cb14-34" aria-hidden="true" tabindex="-1"></a><span class="co">#> 존경하는 국민 여러분, 우리에게는 선열들이 보여준 자주독립의 기상과 대동단결의 지혜가 있습니다. 오늘 3.1절을 맞아 1절의 총칼에 항거하며 이루고자 했던 선열들의 뜻을 다시 한번 가슴에 새깁시다. 국민 통합과 개혁으로 평화와 번영의 동북아 시대를 열어갑시다. 자랑스런 대한민국을 우리 후손들에게 물려줍시다. 감사합니다.</span></span></code></pre></div>
</details>
</div>
</div>
</div>
</div>
</section>
</section>
<section id="번역" class="level1" data-number="6">
<h1 data-number="6"><span class="header-section-number">6</span> 번역</h1>
<p>Whisper API를 사용하면 다국어를 번역하는 것도 가능하다. 먼저, 연설문 앞쪽부분을 영어로 실시간 번역해보자. Whisper는 영어가 아닌 다양한 언어음성을 영어로 번역하는 기능도 갖추고 있다.</p>
<div class="panel-tabset">
<ul class="nav nav-tabs" role="tablist"><li class="nav-item" role="presentation"><a class="nav-link active" id="tabset-2-1-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-1" role="tab" aria-controls="tabset-2-1" aria-selected="true">연설문 초반부</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-2-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-2" role="tab" aria-controls="tabset-2-2" aria-selected="false">연설 원음</a></li><li class="nav-item" role="presentation"><a class="nav-link" id="tabset-2-3-tab" data-bs-toggle="tab" data-bs-target="#tabset-2-3" role="tab" aria-controls="tabset-2-3" aria-selected="false">한국어 음성 → 영문</a></li></ul>
<div class="tab-content">
<div id="tabset-2-1" class="tab-pane active" role="tabpanel" aria-labelledby="tabset-2-1-tab">
<p>존경하는 국민 여러분,</p>
<p>오늘 여든 네 번째 3, 1절을 맞아 나라를 위해 희생하고 헌신하신 애국선열들께 한없는 감사와 경의를 표합니다. 독립유공자와 유가족 여러분에게도 존경과 감사의 말씀을 드립니다.</p>
</div>
<div id="tabset-2-2" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-2-tab">
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb15"><pre class="sourceCode r cell-code"><code class="sourceCode r"><span id="cb15-1"><a href="#cb15-1" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(av)</span>
<span id="cb15-2"><a href="#cb15-2" aria-hidden="true" tabindex="-1"></a><span class="fu">library</span>(embedr)</span>
<span id="cb15-3"><a href="#cb15-3" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb15-4"><a href="#cb15-4" aria-hidden="true" tabindex="-1"></a>embedr<span class="sc">::</span><span class="fu">embed_audio</span>(<span class="st">"data/한국어_영어번역.mp3"</span>)</span></code></pre></div>
</details>
<div class="cell-output-display">
<audio controls> <source src='data/한국어_영어번역.mp3' type='audio/mpeg'> Your browser does not support the audio tag; for browser support, please see: https://www.w3schools.com/tags/tag_audio.asp </audio>
</div>
</div>
</div>
<div id="tabset-2-3" class="tab-pane" role="tabpanel" aria-labelledby="tabset-2-3-tab">
<p>특히, 프롬프트에 맥락 정보를 넣어 전달하면 더욱 정확한 번역 결과를 기대할 수 있다.</p>
<div class="cell">
<details>
<summary>코드</summary>
<div class="sourceCode" id="cb16"><pre class="sourceCode python cell-code"><code class="sourceCode python"><span id="cb16-1"><a href="#cb16-1" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> openai</span>
<span id="cb16-2"><a href="#cb16-2" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> dotenv <span class="im">import</span> load_dotenv</span>
<span id="cb16-3"><a href="#cb16-3" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> os</span>
<span id="cb16-4"><a href="#cb16-4" aria-hidden="true" tabindex="-1"></a></span>
<span id="cb16-5"><a href="#cb16-5" aria-hidden="true" tabindex="-1"></a><span class="co"># API KEY ----------------------</span></span>
<span id="cb16-6"><a href="#cb16-6" aria-hidden="true" tabindex="-1"></a>load_dotenv()</span>