Spaces:
Runtime error
Runtime error
# IP_WEB_SERVER = "https://f564-196-65-150-53.ngrok-free.app" | |
# IP_MODEL_SERVER = "https://fluffy-mole-81.telebit.io" | |
IP_WEB_SERVER = "https://fastapi-b3endffrhgethzhz.canadacentral-01.azurewebsites.net" | |
#IP_WEB_SERVER = "http://localhost:8000" | |
SERVICES_API = IP_WEB_SERVER+"/services/" | |
ADD_SERVICES_API = IP_WEB_SERVER+"/add_services" | |
ADD_STORE_DOCUMENT = IP_WEB_SERVER+"/add_and_store_document/" | |
SEARCH_API = IP_WEB_SERVER+"/serach/" | |
DOCUMENT_API = IP_WEB_SERVER+"/documents" | |
REMOVE_DOCUMENTS_API = IP_WEB_SERVER+"/remove_documents" | |
REMOVE_SERVICE_API = IP_WEB_SERVER+"/remove_service" | |
GET_NUM_PAGES = IP_WEB_SERVER+"/get_num_pages" | |
RESPONSE_API = IP_WEB_SERVER+"/structure_response" | |
RESPONSE_TXT_API = IP_WEB_SERVER+"/structure_response_text" | |
DEFAULT_SCHEMA = { | |
"GeographicContext": "<variable>", | |
"SubGeographicContext": "<variable>", | |
"Channel": "<variable>", | |
"RateType": "<variable>", | |
"Notes": ["<variable>"], | |
"Rates": [ | |
{ | |
"PaymentProduct": "<variable>", | |
"Details": [ | |
{ | |
"FeeTier": "<variable>", | |
"IRD": ["<variable>"], | |
"Rate": "<variable>" | |
}, | |
] | |
}, | |
] | |
} | |