Skip to content

fix: get_my_tickets tool prompt #25

fix: get_my_tickets tool prompt

fix: get_my_tickets tool prompt #25

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Tikeetron LLM Deployment
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build and Push to Registry
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Python
# The actions/cache step below uses this id to get the exact python version
id: setup-python
uses: actions/setup-python@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Connect to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
push: true
tags: laam012/api:tikeetron-ai
file: ./Dockerfile.development
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
- uses: actions/cache@v4
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}