Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0h-n0/openai_api_lang_comparison
https://github.com/0h-n0/openai_api_lang_comparison
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/0h-n0/openai_api_lang_comparison
- Owner: 0h-n0
- Created: 2023-05-22T15:54:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-13T18:18:46.000Z (12 months ago)
- Last Synced: 2024-10-12T04:51:50.707Z (26 days ago)
- Language: JavaScript
- Size: 24.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### OPENAI_API Comparison(gpt35t)
|Lang|Curl|Rust|Python|Javascript(Node)|Go|AWS Lambda + Python|
|--:|--:|--:|--:|--:|--:|--:|
|Mean|1.673s|1.672s|2.330s|1.907s|1.729s|1.626|
|Std|± 0.249s|± 0.257|± 0.387s|± 0.754s|± 0.265s|± 0.350s|
|Max|2.156s|2.522s|3.427s|4.116s|2.468s|3.036s|
|Min|1.328s|1.418s|1.838s|0.867s|1.358|1.261s|### Azure_OPENAI_API Comparison
2023/11/14
|Lang|Curl(gpt35t)|Rust|Python(gpt4)|Python(gpt35t16k)|Javascript(Node)|Go|AWS Lambda + Python|
|--:|--:|--:|--:|--:|--:|--:|--:|
|Mean|79.9ms|s|2.198s|1.019s|s|s|s|
|Std|± 10.4ms|± s|± 1.366s|± 0.327s|± s|± s|± s|
|Max|139.5ms|s|5.289s|2.073s|s|s|s|
|Min|70.5ms|s|1.073s|0.327s|s|s|s|> * 30 trials per language.
> * use Hyperfine# Azure OPENAI API
```shell
$ curl https://YOUR_RESOURCE_NAME.openai.azure.com/openai/deployments/gpt35t16k/chat/completions?api-version=2023-07-01-preview \
-H "Content-Type: application/json" \
-H "api-key: $AZURE_OPENAI_API_KEY" \
-d '{
"model": "gpt35",
"messages": [{"role": "user", "content": "hello"}],
"temperature": 0.0,
"max_tokens": 800,
"frequency_penalty": 0.0,
"presence_penalty": 0.0,
"top_p": 1.0,
"stop": null
}'
```# OpenAI API
```shell
$ curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "hello"}],
"temperature": 0.0,
}'
```## Curl
```shell
$ curl --version
curl 7.68.0 (x86_64-pc-linux-gnu)
``````bash
$ hyperfine -i --warmup 5 -m 30 'bash ./native.sh'
Benchmark 1: bash ./native.sh
Time (mean ± σ): 1.673 s ± 0.249 s [User: 0.008 s, System: 0.004 s]
Range (min … max): 1.328 s … 2.156 s 30 runs
```# Rust
```shell
$ cargo --version
cargo 1.69.0 (6e9a83356 2023-04-12)
$ cargo build --release
``````shell
$ hyperfine -i --warmup 5 -m 30 ./target/release/openai_rs
Benchmark 1: ./target/release/openai_rs
Time (mean ± σ): 1.672 s ± 0.257 s [User: 0.006 s, System: 0.003 s]
Range (min … max): 1.418 s … 2.522 s 30 runs
```# Python3.11
```shell
$ hyperfine -i --warmup 5 -m 30 'poetry run python openai_py/main.py'
Benchmark 1: poetry run python openai_py/main.py
Time (mean ± σ): 2.330 s ± 0.387 s [User: 0.488 s, System: 0.054 s]
Range (min … max): 1.838 s … 3.427 s 30 runs
```# Go
```shell
$ go version
go version go1.20.4 linux/amd64
$ go build -ldflags "-s -w"
``````shell
$ hyperfine -i --warmup 5 -m 30 ./mod
Benchmark 1: ./mod
Time (mean ± σ): 1.729 s ± 0.265 s [User: 0.011 s, System: 0.005 s]
Range (min … max): 1.358 s … 2.468 s 30 runs
```# Typescript
```shell
$ tsc -v
Version 5.0.4
node --version
v18.9.0
``````shell
$ hyperfine -i --warmup 5 -m 30 'node main.js'
Benchmark 1: node main.js
Time (mean ± σ): 1.907 s ± 0.754 s [User: 0.075 s, System: 0.010 s]
Range (min … max): 0.867 s … 4.116 s 30 runs
```# AWS Lambda + Python3.10
The codes are not provided yet
```shell
$ Benchmark 1: bash lambda.sh
Time (mean ± σ): 1.626 s ± 0.350 s [User: 0.009 s, System: 0.002 s]
Range (min … max): 1.261 s … 3.036 s 30 runs
```