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() {