From 697acd0a0bda8e90eb286f7ffa0b473b6fa86dfb Mon Sep 17 00:00:00 2001 From: Josh Kuhn Date: Sat, 5 Dec 2020 17:44:06 -0800 Subject: [PATCH] README cleanups (#4) * README cleanups * Add build status * Add crate badge * Dont run double tests on prs --- .github/workflows/rust.yml | 8 ++++++-- README.md | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a38cd8c..3e5bc2e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,6 +1,10 @@ -on: [push, pull_request] +on: + pull_request: + push: + branches: + - main -name: Continuous Integration +name: CI jobs: check: diff --git a/README.md b/README.md index b5326a6..efe2bfa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ # openai-api-rust +![docs](https://docs.rs/openai-api/badge.svg) +[![Crates.io](https://img.shields.io/crates/v/openai-api.svg)](https://crates.io/crates/openai-api) +![build](https://github.com/deontologician/openai-api-rust/workflows/Continuous%20Integration/badge.svg) + A simple rust client for OpenAI API. Has a few conveniences, but is mostly at the level of the API itself. @@ -6,13 +10,13 @@ Has a few conveniences, but is mostly at the level of the API itself. # Installation ``` -$ cargo add openai-api-rust +$ cargo add openai-api ``` # Quickstart ```rust -use openai_api::{api::CompletionArgs, OpenAIClient}; +use openai_api::OpenAIClient; #[tokio::main] async fn main() {