* Update cognify and the networkx client to prepare for running in Neo4j * Fix for openai model * Add the fix to the infra so that the models can be passed to the library. Enable llm_provider to be passed. * Auto graph generation now works with neo4j * Added fixes for both neo4j and networkx * Explicitly name semantic node connections * Added updated docs, readme, chunkers and updates to cognify * Make docs build trigger only when changes on it happen * Update docs, test git actions * Separate cognify logic into tasks * Introduce dspy knowledge graph extraction --------- Co-authored-by: Boris Arzentar <borisarzentar@gmail.com>
25 lines
847 B
YAML
25 lines
847 B
YAML
name: build test | Docker image
|
|
|
|
on: pull_request
|
|
|
|
env:
|
|
AWS_ACCOUNT_ID_DEV: "463722570299"
|
|
|
|
jobs:
|
|
|
|
build_docker:
|
|
name: Build PromethAI Backend Docker App Image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out PromethAI code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build PromethAI backend Docker image tag
|
|
id: backend-docker-tag
|
|
run: |
|
|
export SHA_SHORT="$(git rev-parse --short HEAD)"
|
|
export CUR_DATE="$(date +%Y%m%d%H%M%S)"
|
|
export VERSION="dev-$CUR_DATE-$SHA_SHORT"
|
|
image_name="backend" docker_login="false" version="$VERSION" account="${{ env.AWS_ACCOUNT_ID_DEV }}" app_dir="backend" publish="false" ./bin/dockerize
|
|
export DOCKER_TAG=$(cat /tmp/.DOCKER_IMAGE_VERSION)
|
|
echo "Successfully built PromethAI backend Docker tag is: $DOCKER_TAG"
|