Merge branch 'NovaOSS:main' into main

This commit is contained in:
Game_Time 2023-08-20 17:31:04 +05:00 committed by GitHub
commit 99977b487f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 9 deletions

View file

@ -1,6 +1,8 @@
name: Python Tests name: Python Tests
on: [pull_request] on:
pull_request:
types: [review_requested]
jobs: jobs:
test: test:

View file

@ -1,5 +1,5 @@
# ☄️ NovaOSS API Server # ☄️ NovaAI - Core API Server
Reverse proxy server for "Closed"AI's API. 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 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) ![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) ![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*" We aim to fix that! NovaAI provides several AI models for you to use for free.
>
> — [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!
## Star History ## Star History

View file

@ -111,7 +111,8 @@ def test_all():
print('[lightblue]Checking the /v1/models endpoint...') print('[lightblue]Checking the /v1/models endpoint...')
print(test_models()) print(test_models())
except Exception as e: except Exception as e:
print('[red]Error: ' + e) print('[red]Error: ')
print(e)
exit(500) exit(500)
if __name__ == '__main__': if __name__ == '__main__':