This repository contains tools and resources for interacting with the AICA API, applications and components.
The Python client is available at https://pypi.org/project/aica-api/ and can be installed as follows:
pip install aica-api
See the python subdirectory for more information and source code.
JSON schemas defining the expected syntax for AICA application files or component descriptions are available in the schemas subdirectory.
In order to bundle the schemas locally for debugging and testing, do the following (replace <path>
and <schema>
for the
desired schema generation):
docker build -t aica-technology/api-schema -f- . <<EOF
FROM node:latest
WORKDIR /tmp
COPY . .
RUN cd utils && npm install
RUN node utils/bundleHelper.js <path>/<schema>.schema.json <schema>.schema.json
EOF
if [ $? -eq 0 ]; then \
CONTAINER_ID=$(docker run -d aica-technology/api-schema);
docker cp "${CONTAINER_ID}":/tmp/<schema>.schema.json .;
docker stop "${CONTAINER_ID}";
fi