Skip to content

Added Memory System for chat bot.. #17

Added Memory System for chat bot..

Added Memory System for chat bot.. #17

Workflow file for this run

name: CheckLints
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
# Run linting with pylint
- name: Analysing the code with pylint
run: |
pylint ./src --disable=missing-module-docstring,invalid-name,import-error,too-few-public-methods