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: 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 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__':