<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>GPT3.5 Archives - JIN&#039;s BOT</title>
	<atom:link href="https://jinsbot.com/tag/gpt3-5/feed/" rel="self" type="application/rss+xml" />
	<link>https://jinsbot.com/tag/gpt3-5/</link>
	<description>Coding + Engineering</description>
	<lastBuildDate>Sun, 22 Sep 2024 11:17:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
<site xmlns="com-wordpress:feed-additions:1">158124120</site>	<item>
		<title>GPT3.5 Turbo – ChatGPT python API 소개</title>
		<link>https://jinsbot.com/gpt3-5-turbo/</link>
					<comments>https://jinsbot.com/gpt3-5-turbo/#respond</comments>
		
		<dc:creator><![CDATA[geniuskpj]]></dc:creator>
		<pubDate>Thu, 02 Mar 2023 09:38:48 +0000</pubDate>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[GPT]]></category>
		<category><![CDATA[GPT3.5]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[openAI]]></category>
		<category><![CDATA[PYTHON]]></category>
		<category><![CDATA[Turbo]]></category>
		<guid isPermaLink="false">https://jinsbot.com/?p=877</guid>

					<description><![CDATA[<p>이전글에서 GPT3.5 모델의 python 사용법에 대해 소개했다. 그리고 ChatGPT 의 모델인 GPT3.5 Turbo 가 드디어 공개되었다. 이에 따라 변경된 python 사용법, 특징에 대해 소개하겠다. GPT3.5 Turbo python 코드 openai 패키지를 설치하거나 업데이트 후에 다음과 같이 사용한다. import openai openai.api_key ="발급받은 API키" completion = openai.ChatCompletion.create( model="gpt-3.5-turbo", messages=[{"role": "user", "content": "Tell the world about the ChatGPT API [&#8230;]</p>
<p>The post <a href="https://jinsbot.com/gpt3-5-turbo/">GPT3.5 Turbo – ChatGPT python API 소개</a> appeared first on <a href="https://jinsbot.com">JIN&#039;s BOT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://jinsbot.com/gpt-3-5-python/" target="_blank" rel="noreferrer noopener">이전글</a>에서 GPT3.5 모델의 python 사용법에 대해 소개했다.</p>
<p>그리고 ChatGPT 의 모델인 GPT3.5 Turbo 가 드디어 <a href="https://openai.com/blog/introducing-chatgpt-and-whisper-apis" target="_blank" rel="noreferrer noopener">공개</a>되었다.</p>
<p>이에 따라 변경된 python 사용법, 특징에 대해 소개하겠다.</p>
<h2 class="wp-block-heading">GPT3.5 Turbo python 코드</h2>
<p>openai 패키지를 설치하거나 업데이트 후에</p>
<p>다음과 같이 사용한다.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">import openai
openai.api_key ="발급받은 API키"
completion = openai.ChatCompletion.create(
  model="gpt-3.5-turbo", 
  messages=[{"role": "user", "content": "Tell the world about the ChatGPT API in the style of a pirate."}]
)
print(completion)</pre>
<p>기존 Completion 에서 ChatCompletion 으로 바뀌었고</p>
<p>model이 gpt-3.5-turbo 로 바뀌었다.</p>
<p>마지막으로 prompt 가 messages로 바뀌었고</p>
<p>role이라는 인자가 추가되었다.</p>
<p>자세한 내용은 custom API 로 추가 설명하겠다.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">import requests
import json
headers={"Authorization":"Bearer 발급키","Content-Type":"application/json"}
link="https://api.openai.com/v1/chat/completions"
messages=[        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Who won the world series in 2020?"},
        {"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
        {"role": "user", "content": "Where was it played?"}]
data={"model": "gpt-3.5-turbo", "messages": messages, "temperature": 0.2, "max_tokens": 300}
res=requests.post(link,data=json.dumps(data),headers=headers)
print(res.json()['choices'][0]['message'])</pre>
<p>위 예제에서 볼 수 있듯이 이제 message를 복수개 보낼 수 있다.</p>
<p>system을 통해 GPT의 역할을 지정하는 것이고</p>
<p>user 는 사용자의 입력을 나타낸다.</p>
<p>마지막으로 assistant 는 이전 대답 혹은 사전 정보 를 의미한다.</p>
<p>나머지 parameter 는 이전과 동일하니 <a href="https://jinsbot.com/gpt-3-5-python/" target="_blank" rel="noreferrer noopener">이전글 </a>혹은</p>
<p><a href="https://platform.openai.com/docs/api-reference/chat/create" target="_blank" rel="noreferrer noopener">링크</a>를 확인하길 바란다.</p>
<h2 class="wp-block-heading">GPT3.5 용도</h2>
<p>openai 에서는 <a href="https://platform.openai.com/docs/guides/chat" target="_blank" rel="noreferrer noopener">가이드</a>를 통해 다음과 같은 사용을 추천하고 있다.</p>
<ul>
<li>이메일 이나 문서의 초안 작성</li>
<li>파이썬 코드 작성</li>
<li>문서에 담긴 정보에 대해 질의 응답</li>
<li>챗봇 생성</li>
<li>소프트웨어 자연어 인터페이스 추가</li>
<li>다양한 주제에 대한 tutor</li>
<li>번역</li>
<li>Simulate characters for video games and much more</li>
</ul>
<p>번역에 대해서는 다음과 같이 message를 작성하면 된다.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="python" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">text='텍스트'
messages=[{"role": "user", "content": f'Translate the following English text to Korean: {text}'}]</pre>
<h2 class="wp-block-heading">이전 모델과 차이가 뭐야?</h2>
<p>가격이 1/10 수준으로 <strong>저렴해졌다.</strong></p>
<p>기존 GPT3.5 모델은 1000토큰 당 0.02$이었지만</p>
<p>GPT3.5 Turbo는 1000토큰 당 0.002$이다.</p>
<p>그리고 추가 학습 ( fine tuning ) 에 대한</p>
<p>API는 아직 공개되지 않았다. ( 23.03.01 기준)</p>
<p>따라서 <strong>커스텀 모델</strong>이 필요한 경우에는</p>
<p>기존 모델을 사용해야 한다.</p>
<p>그리고 GPT3.5 Turbo 에 입력된 데이터는</p>
<p>30일간 저장된다고 명시 되었다.</p>
<p>데이터 사용에 대한 정책은 다음 <a href="https://platform.openai.com/docs/data-usage-policies" target="_blank" rel="noreferrer noopener">링크</a>를 참조하라.</p>
<p>개인 정보를 입력했을 경우 삭제 요청을 할 수 있다.</p>
<p>또, 차별 및 성희롱에 대한 판단 기능을</p>
<p>추가적으로 사용할 수 있으니 다음 <a href="https://platform.openai.com/docs/data-usage-policies" target="_blank" rel="noreferrer noopener">가이드</a>를 참고하라.</p>
<p>이외에도 음성 텍스트 변환 및 번역 모델인</p>
<p>Whisper 모델이 개선되었다.</p>
<p>개선 모델의 사용료는 분당 0.006$로 굉장히 저렴하고</p>
<p>다양한 언어와 포맷을 지원한다.</p>
<p>자세한 내용은 다음 <a href="https://platform.openai.com/docs/guides/speech-to-text" target="_blank" rel="noreferrer noopener">링크</a>에서 확인할 수 있다.</p>
<h2 class="wp-block-heading">GPT3.5 의 경쟁자는?</h2>
<p><a href="https://jinsbot.com/chatgpt-alternative/" target="_blank" rel="noreferrer noopener">다른 글</a>에서 meta ( facebook ) 의 OPT 모델에 대한 이야기를 했다.</p>
<p>meta 에서도 최근 새로운 모델인 LLaMA 를 제시했다.</p>
<p>가장 큰 모델이 65B 라 실망할 수도 있지만</p>
<p>학습 방법의 개선으로 성능은 이전 모델보다 뛰어나다고 한다.</p>
<p><a href="https://arxiv.org/abs/2302.13971" target="_blank" rel="noreferrer noopener">논문</a>에 따르면 GPT3 (구모델) 보다 나은 성능을 보인다.</p>
<p>성능 대비 요구 Parameter 가 줄었기 때문에 일부 모델은</p>
<p>3090, 3090S로 구동할 수 있을 것이다.</p>
<p>예를 들어 7B 모델은 max_batch_size를 1로 조정하면</p>
<p>16G VRAM으로 구동 가능하다.</p>
<p>fp8로 정밀도를 희생한다면 13B모델까지</p>
<p>3090에서 구동 가능할 것으로 예상된다.</p>
<p>참고로 LLaMa 의 상업적 사용은 별도의 협의가 필요하다.</p>
<p>아직 GPT3.5 수준에 이르지는 못했지만 둘의 경쟁으로</p>
<p>더 저렴하고 좋은 서비스가 나올 수 있을 것이다.</p>
<hr class="wp-block-separator has-alpha-channel-opacity" />
<p>(23.03.06 updated)</p>
<p>흥미롭게도 LLaMa의 모델이 인터넷상에 유출되었다.</p>
<p>원래도 학술 목적으로는 어렵지 않게 받을 수 있었지만</p>
<p>일반인에게까지 오픈되어 사람들이 열심히 연구중이다.</p>
<p>흥미롭게도 누군가 LLaMa github 에 토렌트 ( 마그넷 ) 주소를</p>
<p>업로드 했으며 Meta에서도 딱히 삭제하지 않고 있다. (<a href="https://github.com/facebookresearch/llama/pull/73/files" target="_blank" rel="noreferrer noopener">링크</a>)</p>
<p>외국 친구들의 반응도 있으니 짤리기 전에 한번 보길 추천한다.</p>
<p>이번 유출로 인해 모델을 받아 손쉽게 customize, 테스트해 볼 수 있다.</p>
<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />
<p>관련글</p>
<ul>
<li><a href="https://jinsbot.com/chatgpt-alternative/">chatGPT 한계점과 대체재에 대해</a></li>
<li><a href="https://jinsbot.com/gpt-3-5-python/">GPT-3.5 python에서 사용하기</a></li>
<li><a href="https://jinsbot.com/chat-gpt-hybrid-python/">chat GPT 하이브리드 앱 만들기 C# python</a></li>
<li><a href="https://jinsbot.com/gpt-4-introduction/">GPT-4 뭐가 달라 졌을까?</a></li>
<li><a href="https://jinsbot.com/%eb%b9%99-new-bing-intro/">빙 생성 AI 까지 넘보는 중</a></li>
</ul>
<p>The post <a href="https://jinsbot.com/gpt3-5-turbo/">GPT3.5 Turbo – ChatGPT python API 소개</a> appeared first on <a href="https://jinsbot.com">JIN&#039;s BOT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jinsbot.com/gpt3-5-turbo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">877</post-id>	</item>
		<item>
		<title>chatGPT 한계점과 대체재에 대해</title>
		<link>https://jinsbot.com/chatgpt-alternative/</link>
					<comments>https://jinsbot.com/chatgpt-alternative/#respond</comments>
		
		<dc:creator><![CDATA[geniuskpj]]></dc:creator>
		<pubDate>Fri, 17 Feb 2023 09:33:30 +0000</pubDate>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[chatGPT]]></category>
		<category><![CDATA[GPT]]></category>
		<category><![CDATA[GPT3.5]]></category>
		<category><![CDATA[openAI]]></category>
		<category><![CDATA[로우코드]]></category>
		<guid isPermaLink="false">https://jinsbot.com/?p=873</guid>

					<description><![CDATA[<p>chatGPT 는 궁극의 AI? 이전글에서 chatGPT 와 동일한 GPT 3.5의 python api에 대해 알아봤다. 분명 유용한 툴이지만 세상을 바꿀 정도일까? chatGPT 의 단점에 대해 알아보자. 최적의 답변이 아니다. GPT에는 별도의 지능이 없기때문에 학습된 데이터가 옳은지 틀린지 얼마나 좋은지 평가할 수 없다. 따라서 학습 시킨 데이터의 질에 따라 답변의 질도 결정된다. 또한, 내용을 조합하여 답변하기 때문에 [&#8230;]</p>
<p>The post <a href="https://jinsbot.com/chatgpt-alternative/">chatGPT 한계점과 대체재에 대해</a> appeared first on <a href="https://jinsbot.com">JIN&#039;s BOT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 class="wp-block-heading">chatGPT 는 궁극의 AI?</h2>
<p><a href="https://jinsbot.com/gpt-3-5-python/" target="_blank" rel="noreferrer noopener">이전글</a>에서 chatGPT 와 동일한 GPT 3.5의</p>
<p>python api에 대해 알아봤다.</p>
<p>분명 유용한 툴이지만 세상을 바꿀 정도일까?</p>
<p>chatGPT 의 단점에 대해 알아보자.</p>
<h3 class="wp-block-heading">최적의 답변이 아니다.</h3>
<p>GPT에는 별도의 지능이 없기때문에</p>
<p>학습된 데이터가 옳은지 틀린지 얼마나 좋은지 평가할 수 없다.</p>
<p>따라서 <strong>학습 시킨 데이터의 질</strong>에 따라</p>
<p>답변의 질도 결정된다.</p>
<p>또한, 내용을 조합하여 답변하기 때문에</p>
<p>이 과정에서 오류가 섞여 들어갈 수 있다.</p>
<p>특히, 코딩 측면에서 이런 점이 두드러진다.</p>
<p>chatGPT 가 제공해 주는 코드, 예제는</p>
<p>분명 유용하지만 수준이 높지 않다.</p>
<p>이러한 불완전성은 <strong>기술적 특성</strong>이자 <strong>한계</strong>이고</p>
<p>애초에 노코드 , 로우코드 솔루션의 목적은 다음과 같다.</p>
<ol>
<li><strong>초보자</strong>의 손쉬운 사용</li>
<li><strong>단순 반복 코드</strong>의 작성 시간 단축</li>
</ol>
<p>따라서 chatGPT 가 현업 프로그래머를 대체할 수는 없다.</p>
<p>최적의 코드를 제공하지 못하는게 당연하고</p>
<p>이에 대해 불평한다면 기술의 목적,용도를</p>
<p>잘못 이해한 것이다.</p>
<p>애초에 목적</p>
<p>현업 프로그래머를 대체하는</p>
<p>애초에 chatGPT 나 copilot의 목적은</p>
<p>프로그래머를 대체하는 것이 아니다.</p>
<h3 class="wp-block-heading">추가적인 학습이 어렵다.</h3>
<p>chatGPT 의 잘못된 응답에 지적을 할 경우</p>
<p>사람처럼 오류를 인정하고 내용을 정정한다.</p>
<p>실시간 학습이 이루어진다고 착각할 수 있지만</p>
<p>상황에 맞게 반응하는 것일 뿐이다.</p>
<p>좋은 내용을 선별하여 학습 된다고 하지만</p>
<p>언제 어떤 방식으로 이루어지는지 알려진 바 없다.</p>
<p>물론 chatGPT 도 추가 학습을 위한 api 를 공개하겠지만</p>
<p>생각보다 <strong>비용</strong>이 비쌀 것이다.</p>
<p>현재 같은 GPT3.5 인 Davinci 의 추가학습 모델은</p>
<p>사용시 1k token(750단어)당 0.12불의 비용을 지불해야한다. (23년 2월)</p>
<p>개인에게 부담되는 가격은 아니지만 사용자가 수십명만 되어도</p>
<p><strong>상당한 비용</strong>이 발생할 것이다.</p>
<h3 class="wp-block-heading">저작권 및 기밀정보 문제</h3>
<p>공개적으로 코드, 정보를 올린거지만</p>
<p>출처표기 없는 상업적 사용을 달가워할 사람은 없다.</p>
<p>그런 면에서 구글의 바드 는 정보의 출처를</p>
<p>표기할 것이라고 한다.</p>
<p>현재 GPT3.5 모델은 openai를 통해서만 학습 시킬 수 있는데</p>
<p>기업의 경우 기밀 정보 유출에 대한 우려가 있다.</p>
<p>따라서 삼성전자 는 정보 유출을 막기 위해</p>
<p>chatGPT 의 접속을 차단했다.</p>
<p>당연히, 별도 학습된 모델은 특정 계정, 회사에서만</p>
<p>접근할 수 있을 것이다.</p>
<p>그렇더라도 기업입장에서 서버를 외부에 두는것은 큰 부담이다.</p>
<h2 class="wp-block-heading">chatGPT 대체재</h2>
<p>그러면 local 등 에서 사용할 수 있는 chatGPT의 대안들을 알아보자.</p>
<p>모델이름 뒤에 있는 숫자는 parameter의 개수를 나타내며</p>
<p>일반적으로 높을수록 성능이 더 좋은 대신 고사양을 요구한다.</p>
<h2 class="wp-block-heading">GPT-J 6B</h2>
<p><a href="https://www.eleuther.ai/" target="_blank" rel="noreferrer noopener">eleutherAI</a>에서 Ben Wang의 JAX를 기반으로 Pile 이라는 데이터셋으로 만든 모델이다.</p>
<p>자체적인 평가 결과 GPT3 Curie와 유사한 성능을 가진 것으로 보인다.</p>
<p>자세한 설명은 <a href="https://huggingface.co/EleutherAI/gpt-j-6B" target="_blank" rel="noreferrer noopener">huggingface</a>에서 볼 수 있고 간단한 체험도 해볼 수 있다.</p>
<p>최소 12GB의 VRAM이 필요하다.</p>
<p><a href="https://github.com/arrmansa/Basic-UI-for-GPT-J-6B-with-low-vram" target="_blank" rel="noreferrer noopener">low vram 버전</a>도 있지만 성능 손실이 존재한다.</p>
<h3 class="wp-block-heading">GPT-NEOX 20B</h3>
<p>eleutherAI 의 최신 모델로 전작 GPT-NEO를 계승하고 있다.</p>
<p>자체 평가에 따르면 Curie보다는 좋지만</p>
<p>GPT3.5 모델인 Davinci에 미치지는 못한다.</p>
<p><a href="https://textsynth.com/playground.html" target="_blank" rel="noreferrer noopener">textsynth</a>, <a href="https://20b.eleuther.ai/" target="_blank" rel="noreferrer noopener">eleutherAI</a>에서 테스트해볼 수 있다.</p>
<p>최소 40GB의 vram이 필요하기때문에 여기서부터는</p>
<p>A40, A100, RTX A6000 이상이 필요하다.<br />
A100(40G)의 경우 미국 온디맨드 기준 AWS가 시간당 4.1$</p>
<p>GCP가 시간당 3.67$이므로 클라우드에서 구현하는걸 추천한다.</p>
<p>azure 등 더 저렴한 곳도 있으니 자세한 가격은 <a href="https://fullstackdeeplearning.com/cloud-gpus/" target="_blank" rel="noreferrer noopener">이 링크</a>를 참고하라.</p>
<figure class="wp-block-table">
<table>
<thead>
<tr>
<th>Task</th>
<th>Category</th>
<th>Curie</th>
<th>GPT-J-6B</th>
<th>FairSeq-13B</th>
<th>GPT-NeoX-20B</th>
<th>DaVinci</th>
</tr>
</thead>
<tbody>
<tr>
<td>LAMBADA</td>
<td>Sentence Completion</td>
<td>69.51%</td>
<td>68.29%</td>
<td>70.95%</td>
<td>72.00%</td>
<td>75.16%</td>
</tr>
<tr>
<td>ANLI R1</td>
<td>Natural Language Inference</td>
<td>32.80%</td>
<td>32.40%</td>
<td>34.00%</td>
<td>34.00%</td>
<td>36.30%</td>
</tr>
<tr>
<td>ANLI R2</td>
<td>Natural Language Inference</td>
<td>33.50%</td>
<td>34.00%</td>
<td>33.00%</td>
<td>34.40%</td>
<td>37.00%</td>
</tr>
<tr>
<td>ANLI R3</td>
<td>Natural Language Inference</td>
<td>35.50%</td>
<td>35.50%</td>
<td>34.75%</td>
<td>35.40%</td>
<td>36.83%</td>
</tr>
<tr>
<td>WSC</td>
<td>Coreference Resolution</td>
<td>49.54%</td>
<td>49.54%</td>
<td>55.44%</td>
<td>50.00%</td>
<td>59.18%</td>
</tr>
<tr>
<td>WinoGrande</td>
<td>Coreference Resolution</td>
<td>64.56%</td>
<td>64.01%</td>
<td>67.40%</td>
<td>66.10%</td>
<td>69.93%</td>
</tr>
<tr>
<td>HellaSwag</td>
<td>Sentence Completion</td>
<td>54.81%</td>
<td>36.53%</td>
<td>57.69%</td>
<td>53.50%</td>
<td>63.46%</td>
</tr>
<tr>
<td><strong>Average</strong></td>
<td></td>
<td>48.60%</td>
<td><strong>45.75%</strong></td>
<td>50.43%</td>
<td><strong>49.34%</strong></td>
<td><strong>53.98%</strong></td>
</tr>
</tbody>
</table><figcaption>EleutherAI 평가 결과(standard language modeling tasks)</figcaption></figure>
<h3 class="wp-block-heading">OPT-175B : chatGPT 에 가장 근접</h3>
<p>meta ( facebook) 에서 공개한 모델로 GPT3.5와</p>
<p>동일한 parameter 갯수를 가진다.</p>
<p>현재 API를 완전히 공개하였으며 비상업용, 연구적 목적에</p>
<p>한하여 자유롭게 사용할 수 있다.</p>
<p><a href="https://opt.alpa.ai/#generation" target="_blank" rel="noreferrer noopener">링크</a>에서 체험해 볼 수 있으며 데이터셋, 알고리즘의</p>
<p>차이때문인지 davinci 보다는 <strong>성능이 떨어진다.</strong>(<a href="https://arxiv.org/pdf/2205.01068.pdf" target="_blank" rel="noreferrer noopener">논문</a>)</p>
<p>클러스터 구성을 지원하며 총 350GB의 VRAM이 필요하고</p>
<p>최대 700GB의 RAM이 필요하다.</p>
<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide" />
<p>관련글</p>
<ul>
<li><a href="https://jinsbot.com/gpt3-5-turbo/">GPT3.5 Turbo – ChatGPT python API 소개</a></li>
<li><a href="https://jinsbot.com/chat-gpt-hybrid-python/">chat GPT 하이브리드 앱 만들기 C# python</a></li>
<li><a href="https://jinsbot.com/gpt-4-introduction/">GPT-4 뭐가 달라 졌을까?</a></li>
<li><a href="https://jinsbot.com/%eb%b9%99-new-bing-intro/">빙 생성 AI 까지 넘보는 중</a></li>
</ul>
<p>The post <a href="https://jinsbot.com/chatgpt-alternative/">chatGPT 한계점과 대체재에 대해</a> appeared first on <a href="https://jinsbot.com">JIN&#039;s BOT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jinsbot.com/chatgpt-alternative/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">873</post-id>	</item>
	</channel>
</rss>
