mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 18:53:58 +01:00
Small improvements
This commit is contained in:
parent
f9edbf1bc0
commit
4767f74cd9
|
@ -1,5 +1,8 @@
|
|||
# Script to start the production server
|
||||
|
||||
# Commit to the production branch
|
||||
git commit -am "Auto-trigger - Production server started" && git push origin Production
|
||||
|
||||
# Copy files to production
|
||||
cp -r * /home/nova-prod
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ import os
|
|||
import openai as closedai
|
||||
import httpx
|
||||
|
||||
from rich import print
|
||||
from typing import List
|
||||
from dotenv import load_dotenv
|
||||
|
||||
|
@ -100,19 +101,19 @@ def test_api_moderation() -> dict:
|
|||
def test_all():
|
||||
"""Runs all tests."""
|
||||
|
||||
print('Running test on API server to check if its running..')
|
||||
print('[lightblue]Running test on API server to check if its running...')
|
||||
print(test_server())
|
||||
|
||||
print('Running a api endpoint to see if requests can go through...')
|
||||
print('[lightblue]Running a api endpoint to see if requests can go through...')
|
||||
print(test_api())
|
||||
|
||||
print('Checking if the API works with the python library...')
|
||||
print('[lightblue]Checking if the API works with the python library...')
|
||||
print(test_library())
|
||||
|
||||
print('Checking if the moderation endpoint works...')
|
||||
print('[lightblue]Checking if the moderation endpoint works...')
|
||||
print(test_library_moderation())
|
||||
|
||||
print('Checking if all models can be GET')
|
||||
print('[lightblue]Checking the /v1/models endpoint...')
|
||||
print(test_models())
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue