Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jlvihv committed Feb 28, 2023
1 parent a1936a7 commit d620d89
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 23 deletions.
42 changes: 30 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ This project is a rust language implementation of [EdgeGPT](https://github.com/a
## Install

```bash
cargo install binggpt
cargo install binggpt-cli
```

```bash
# use `binggpt`
binggpt
```

Or download the binary from the [release page](https://github.com/jlvihv/BingGPT/releases).
Expand All @@ -43,7 +48,7 @@ If you have a rust development environment, first you need to clone the code, go

If you want to compile it into binaries, you can run `cargo build --release`. After the compilation is done, you can find the compiled binaries in the `target/release` directory.

If you want to install it to the system, you can run `cargo install --path .`, so you can easily use the `binggpt` command anywhere.
If you want to install it to the system, you can run `cargo install --path binggpt-cli`, so you can easily use the `binggpt` command anywhere.

After starting the program, when you see `You:`, it means you can start a conversation with BingGPT, press enter twice to send a message.

Expand Down
7 changes: 6 additions & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ _BingGPT 命令行客户端,使用 rust 编写_
## 安装

```bash
cargo install binggpt
cargo install binggpt-cli
```

```bash
# 执行
binggpt
```

或者从 [release](https://github.com/jlvihv/BingGPT/releases) 页面下载预编译的二进制文件。
Expand Down
4 changes: 2 additions & 2 deletions binggpt-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "client"
name = "binggpt-cli"
version = "0.1.5"
edition = "2021"
license = "MIT"
Expand All @@ -17,7 +17,7 @@ path = "src/main.rs"

[dependencies]
anyhow = "1.0.69"
binggpt = { path = "../binggpt" }
binggpt = "0.1"
colored = "2.0.0"
rustyline = "11.0.0"
tokio = { version = "1.25.0", features = ["full"] }
Expand Down
9 changes: 7 additions & 2 deletions binggpt-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ This project is a rust language implementation of [EdgeGPT](https://github.com/a
## Install

```bash
cargo install binggpt
cargo install binggpt-cli
```

```bash
# use `binggpt`
binggpt
```

Or download the binary from the [release page](https://github.com/jlvihv/BingGPT/releases).
Expand All @@ -43,7 +48,7 @@ If you have a rust development environment, first you need to clone the code, go

If you want to compile it into binaries, you can run `cargo build --release`. After the compilation is done, you can find the compiled binaries in the `target/release` directory.

If you want to install it to the system, you can run `cargo install --path .`, so you can easily use the `binggpt` command anywhere.
If you want to install it to the system, you can run `cargo install --path binggpt-cli`, so you can easily use the `binggpt` command anywhere.

After starting the program, when you see `You:`, it means you can start a conversation with BingGPT, press enter twice to send a message.

Expand Down
7 changes: 6 additions & 1 deletion binggpt-cli/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ _BingGPT 命令行客户端,使用 rust 编写_
## 安装

```bash
cargo install binggpt
cargo install binggpt-cli
```

```bash
# 执行
binggpt
```

或者从 [release](https://github.com/jlvihv/BingGPT/releases) 页面下载预编译的二进制文件。
Expand Down
9 changes: 7 additions & 2 deletions binggpt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ This project is a rust language implementation of [EdgeGPT](https://github.com/a
## Install

```bash
cargo install binggpt
cargo install binggpt-cli
```

```bash
# use `binggpt`
binggpt
```

Or download the binary from the [release page](https://github.com/jlvihv/BingGPT/releases).
Expand All @@ -43,7 +48,7 @@ If you have a rust development environment, first you need to clone the code, go

If you want to compile it into binaries, you can run `cargo build --release`. After the compilation is done, you can find the compiled binaries in the `target/release` directory.

If you want to install it to the system, you can run `cargo install --path .`, so you can easily use the `binggpt` command anywhere.
If you want to install it to the system, you can run `cargo install --path binggpt-cli`, so you can easily use the `binggpt` command anywhere.

After starting the program, when you see `You:`, it means you can start a conversation with BingGPT, press enter twice to send a message.

Expand Down
7 changes: 6 additions & 1 deletion binggpt/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ _BingGPT 命令行客户端,使用 rust 编写_
## 安装

```bash
cargo install binggpt
cargo install binggpt-cli
```

```bash
# 执行
binggpt
```

或者从 [release](https://github.com/jlvihv/BingGPT/releases) 页面下载预编译的二进制文件。
Expand Down

0 comments on commit d620d89

Please sign in to comment.