File size: 917 Bytes
93bc171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38be0ae
 
 
 
93bc171
38be0ae
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
 /*************************************************************************
 *
 * CONFIDENTIAL
 * __________________
 *
 *  Copyright (2024-2025) AI Labs, IronOne Technologies, LLC
 *  All Rights Reserved
 *
 *  Authors  : Hammaad Rizwan, Theekshana Samaradiwakara
 *  Description : API Configurations
 *  CreatedDate : 14/10/2024
 *  LastModifiedDate : 15/10/2024
 *************************************************************************/
"""
API_TITLE = "RegGPT Back End v1"
API_VERSION = "0.1.0"
API_DESCRIPTION = "API_DESC"

API_ENDPOINT_PREFIX = "/api/v1/"
API_DOCS_URL = f"{API_ENDPOINT_PREFIX}docs"
API_REDOC_URL = f"{API_ENDPOINT_PREFIX}redoc"
API_OPENAPI_URL = f"{API_ENDPOINT_PREFIX}openapi.json"

API_ENDPOINT_HEALTH = f"{API_ENDPOINT_PREFIX}health"
API_ENDPOINT_CHAT = f"{API_ENDPOINT_PREFIX}chat"
API_ENDPOINT_MODEL = f"{API_ENDPOINT_PREFIX}models"
API_ENDPOINT_LOGIN = f"{API_ENDPOINT_PREFIX}login"