From 833eb91f456fb03ac5e8e81c70812eb8ab44fe71 Mon Sep 17 00:00:00 2001 From: Game_Time <108236317+RayBytes@users.noreply.github.com> Date: Sun, 20 Aug 2023 17:11:51 +0500 Subject: [PATCH 1/3] i lied --- tests/__main__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/__main__.py b/tests/__main__.py index 5e0b567..9dbe378 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -111,7 +111,8 @@ def test_all(): print('[lightblue]Checking the /v1/models endpoint...') print(test_models()) except Exception as e: - print('[red]Error: ' + e) + print('[red]Error: ') + print(e) exit(500) if __name__ == '__main__': From c52384c72b63008f47a617ac56b844018f2ac920 Mon Sep 17 00:00:00 2001 From: nsde Date: Sun, 20 Aug 2023 14:25:39 +0200 Subject: [PATCH 2/3] Changed README --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 96eec73..909042a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# ☄️ NovaOSS API Server -Reverse proxy server for "Closed"AI's API. +# ☄️ NovaAI - Core API Server +API server for accessing AI models. ![Badge showing the most used language](https://img.shields.io/github/languages/top/novaoss/nova-api) ![Badge showing the code size](https://img.shields.io/github/languages/code-size/novaoss/nova-api) @@ -14,11 +14,7 @@ Reverse proxy server for "Closed"AI's API. ![Nova-API Conver/Banner Image - a picture of a galaxy with the caption "the core API server"](https://i.ibb.co/ZBhkS56/nova-api.png) -> "*OpenAI is very closed*" -> -> — [ArsTechnica (July 2023)](https://arstechnica.com/information-technology/2023/07/is-chatgpt-getting-worse-over-time-study-claims-yes-but-others-arent-sure/) - -We aim to fix that! +We aim to fix that! NovaAI provides several AI models for you to use for free. ## Star History From aeee6ffe1d70754d25384c636eef68f709226740 Mon Sep 17 00:00:00 2001 From: Game_Time <108236317+RayBytes@users.noreply.github.com> Date: Sun, 20 Aug 2023 17:30:20 +0500 Subject: [PATCH 3/3] Update tests.yml to only work if a review is requested --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2acaa62..b79716f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,8 @@ name: Python Tests -on: [pull_request] +on: + pull_request: + types: [review_requested] jobs: test: