diff --git a/docs/reference/create_completion.html b/docs/reference/create_completion.html index 5ce3cec..19512c7 100644 --- a/docs/reference/create_completion.html +++ b/docs/reference/create_completion.html @@ -17,7 +17,7 @@
@@ -193,16 +193,20 @@if (FALSE) {
+prompt_en <- "Tell us the best way to learn R. Include data analysis theories and important R packages to learn."
+prompt_kr <- "최고의 R 학습 방법을 알려주세요. 학습해야할 데이터 분석 이론과 중요한 R 패키지를 포함해 주세요."
# 텍스트로 반환
create_completion(
model = "text-davinci-003",
- prompt = "나는 R을 이용해서 데이터분석을 가르칩니다."
+ max_tokens = 150,
+ prompt = prompt_kr
)
create_completion(
model = "text-davinci-003",
- prompt = "I teach data analysis using R.",
+ prompt = prompt_kr,
ko2en = FALSE,
+ max_tokens = 150,
type = "console"
)
@@ -213,9 +217,10 @@ Examples
create_completion(
model = "text-davinci-002",
- prompt = "나는 R을 이용해서 데이터분석을 가르칩니다.",
+ prompt = prompt_kr,
n = 4,
best_of = 4,
+ max_tokens = 150,
logit_bias = logit_bias
)
}
diff --git a/docs/reference/create_embeddings.html b/docs/reference/create_embeddings.html
index 0336c8d..dc8c461 100644
--- a/docs/reference/create_embeddings.html
+++ b/docs/reference/create_embeddings.html
@@ -17,7 +17,7 @@
# S3 method for messages
-show(messages, type = c("console", "viewer"), ...)
logical. type 인수가 TRUE일 경우에, is_browse가 TRUE이면 +브라우저에 결과가 브라우징되고, FALSE이면 브라우징되지 않음.