You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print('In order to run this script you need to install the sasctl package')
10
+
raise
11
+
12
+
parser=argparse.ArgumentParser(description='This script sets up the LLM repository and LLM Model Project in SAS Model Manager')
13
+
parser.add_argument('-vs', '--viya_server', type=str, help='Enter the URL for the SAS Viya server. An example is example.sas.com', required=True)
14
+
parser.add_argument('-u', '--username', type=str, help='Enter your username for the SAS Viya server', required=True)
15
+
parser.add_argument('-p', '--password', type=str, help='Enter your password for the SAS Viya server', required=True)
16
+
parser.add_argument('-e', '--scr_endpoint', type=str, help='Enter the endpoint under which the LLM containers are published. Example: https://viya-host/llm', required=True)
17
+
parser.add_argument('-dt', '--deployment_type', type=str, default='k8s', help='Enter the type of deployment, can be k8s (LLM & Embedding is deployed in k8s) or aca (Azure Container App)', required=False)
18
+
parser.add_argument('-k', '--verify_ssl', type=str, default='true', help='Set to false if you have a self-signed certificat')
0 commit comments