Skip to content

Commit

Permalink
0.1.0.9000
Browse files Browse the repository at this point in the history
  • Loading branch information
choonghyunryu committed Mar 4, 2023
1 parent c225d0b commit b790560
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
.RData
.Ruserdata
.DS_Store
README.Rmd
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: bitGPT
Title: Tools to use chatGPT for Koreans
Version: 0.1.0.9000
Date: 2023-03-04
Date: 2023-03-05
Authors@R: c(
person("Choonghyun", "Ryu",, "[email protected]", role = c("aut", "cre"))
)
Expand Down
14 changes: 8 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,26 @@
## NEW FEATURES

* chatGPT를 이용한 Speech to Text. (#7).
- transcript_audio()



# bitSpatial 0.0.2.9000
# bitSpatial 0.0.2.

## NEW FEATURES

* chatGPT를 이용한 이미지 변형. (#6).
- draw_img_variation()




# bitSpatial 0.0.1.9001
# bitSpatial 0.0.1.

## NEW FEATURES

* Naver 파파고 번역기. (#1).
- translate
- translate()

* chatGPT를 이용한 이미지 생성. (#2).

- draw_img()

* API key 리소스 핸들링 기능. (#3).
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
# bitGPT
Tools to use chatGPT for Koreans

<!-- README.md is generated from README.Rmd. Please edit that file -->

# bitGPT <img src="man/figures/bitGPT.png" align="right" height="120" width="103.6"/>

## Overview

chatGPT를 보다 쉽게 사용할 수 있는, 그리고 한국어를 지원하는 `bitGPT`.

Features:

- open API 키를 관리 기능으로 인한 손쉬운 서비스 인터페이싱
- OpenAI의 API 키
- Naver 파파고의 client ID와 secret
- OpenAI의 이미지 프로세싱
- 이미지 생성
- 영어 프롬프트와 한국어 프롬프트 지원
- 한국어 프롬프트는 영어 프롬프트로 번역되어 질의
- 이미지 변형
- OpenAI의 STT(Speech to Text)
- Naver 파파고의 텍스트 번역기

## Install bitGPT

github 리파지토리로부터 다음의 명령어로 패키지를 설치합니다.:

``` r
devtools::install_github("bit2r/bitGPT")
```
14 changes: 14 additions & 0 deletions inst/create_logo.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
library(hexSticker)
library(showtext)

chatGPT_logo <- "mix_image.png"

font_add_google("Nanum Pen Script", "pen")

sticker(chatGPT_logo, package = "비트지피티", p_family = "pen",
p_size = 30, p_y = 1.5, p_color = "#FFFFFF",
s_x = 1, s_y = 1, s_width = 1, s_height = 1,
h_size = 1.5, h_color = "#FF9801", h_fill = "#4F95CD",
filename = "bitGPT.png")


Binary file added inst/images/mix_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added man/figures/bitGPT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b790560

Please sign in to comment.