mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 01:20:11 +01:00
* feat: change ollama default model to llama3.1 * chore: bump versions * feat: Change default model in local mode to llama3.1 * chore: make sure last poetry version is used * fix: mypy * fix: do not add BOS (with last llamacpp-python version)
30 lines
774 B
YAML
30 lines
774 B
YAML
name: "Install Dependencies"
|
|
description: "Action to build the project dependencies from the main versions"
|
|
inputs:
|
|
python_version:
|
|
required: true
|
|
type: string
|
|
default: "3.11.4"
|
|
poetry_version:
|
|
required: true
|
|
type: string
|
|
default: "1.8.3"
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1
|
|
with:
|
|
version: ${{ inputs.poetry_version }}
|
|
virtualenvs-create: true
|
|
virtualenvs-in-project: false
|
|
installer-parallel: true
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ inputs.python_version }}
|
|
cache: "poetry"
|
|
- name: Install Dependencies
|
|
run: poetry install --extras "ui vector-stores-qdrant" --no-root
|
|
shell: bash
|
|
|