mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 20:23:58 +01:00
Merge branch 'NovaOSS:main' into main
This commit is contained in:
commit
99977b487f
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
@ -1,6 +1,8 @@
|
||||||
name: Python Tests
|
name: Python Tests
|
||||||
|
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [review_requested]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
|
10
README.md
10
README.md
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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__':
|
||||||
|
|
Loading…
Reference in a new issue