From 48fdc2f6f038dab59d98ed3132988f313aacd959 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Fri, 19 Dec 2025 14:33:52 +0100 Subject: [PATCH] Added env variables for new text --- .gitea/workflows/pushImage.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/pushImage.yaml b/.gitea/workflows/pushImage.yaml index 922c87a..9a06f9e 100644 --- a/.gitea/workflows/pushImage.yaml +++ b/.gitea/workflows/pushImage.yaml @@ -8,6 +8,12 @@ jobs: runs-on: ubuntu-latest env: RUNNER_TOOL_CACHE: /toolcache + LLM_API_HOST_URL: "https://chat.matthiasg.dev/ollama" + LLM_API_TOKEN: "${{ secrets.LLM_API_TOKEN }}" + LLM_CHAT_MODEL: "deepseek-r1:8b" + LLM_CHAT_MODEL_THINK: true + LLM_VISION_MODEL: "llava:7b-v1.6-mistral-q4_1" + LLM_VISION_MODEL_THINK: false steps: - name: Check out repository code uses: actions/checkout@v4