In addition to the LEDR Appliance, the Orchestra Platform includes access to language libraries which purpose is to leverage the API and build adapters and analystics to bring your Knowledge Space to life. We Currently provide access, via open source licence, to libraries and sample code in Python and Typescript.
Currently, the Orchestra Python Binding supports Python versions 3.10 -> 3.11; currently 23.09 is the only Avial release supported, however newer releases will be supported shortly.
To install the Orchestra Python binding, one must first acquire a GitLab PAT to enable downloading of the from the index located at https://gitlab.com/api/v4/projects/41255509/packages/pypi/simple
The PAT must have the read_api permission that is acknowledged in the gitlab.com/api/v4/projects/41255509 project
pip install avesterra --force --no-deps --index-url https://$GITLAB_USERNAME@ledr.io:$GITLAB_PAT@gitlab.com/api/v4/projects/41255509/packages/pypi/simple
Replace $GITLAB_USERNAME
with your GitLab username and $GITLAB_PAT
with your PAT
######TODO
When installing the library inside of Docker container, one should specify the library, index, and version in a requirements.txt included. An example of what is to be added, to a requirements.txt, is given below.
--extra-index-url https://gitlab.com/api/v4/projects/41255509/packages/pypi/simple
avesterra==x.x.x
Replace x.x.x with the proper Avial release number; example 23.9.0 or 24.2.0
To successfully install the Orchestra NPM package, one must setup a .npmrc file and must include the proper dependency in a project's package.json file.
Create a .npmrc in your home directory or in the directory of the project in which you are working
Below is an example of what should be added to the .npmrc
@ledr:registry=https://gitlab.com/api/v4/packages/npm/
'//gitlab.com/api/v4/packages/npm/:_authToken'=$GITLAB_PAT
In the project's package.json dependencies, add the following dependency "@ledr/orchestra": "x.x.x"; replace x.x.x with an Avial release version, for example, 23.9.0. Below is an example of what a dependencies list, inside a package.json, should look like if Orchestra is added as a dependency; replace x.x.x with a proper Avial release number
"dependencies": {
"@ledr/orchestra": "x.x.x",
},