mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2026-09-23 17:08:58 -04:00
llmman (https://github.com/llmmanorg/llmman) serves the Ollama API on port 17434 and works with the bot as-is, so document it in setup-local and link it from the README. Since the backend is no longer Ollama-only, rename the env vars to LLM_ENDPOINT / LLM_PORT as requested in review. OLLAMA_IP / OLLAMA_PORT are kept as deprecated aliases in keys.ts and docker-compose.yml so existing deployments keep working.
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: Tests
|
|
run-name: Unit Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '*'
|
|
- 'package*.json'
|
|
- 'src/**'
|
|
- 'tests/**'
|
|
- '!docs/**'
|
|
- '!imgs/**'
|
|
- '!.github/**'
|
|
- '.github/workflows/**'
|
|
- '!.gitignore'
|
|
- '!LICENSE'
|
|
- '!README'
|
|
|
|
jobs:
|
|
Discord-Node-Test:
|
|
if: ${{ github.event.pull_request.head.repo.fork == false }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 2
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Node Environment
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: lts/jod
|
|
cache: npm
|
|
|
|
- name: Install Project Dependencies
|
|
run: |
|
|
npm install
|
|
|
|
- name: Create Environment Variables
|
|
run: |
|
|
touch .env
|
|
echo CLIENT_TOKEN = ${{ secrets.BOT_TOKEN }} >> .env
|
|
echo LLM_ENDPOINT = ${{ secrets.OLLAMA_IP }} >> .env
|
|
echo LLM_PORT = ${{ secrets.OLLAMA_PORT }} >> .env
|
|
echo MODEL = ${{ secrets.MODEL }} >> .env
|
|
|
|
- name: Test Application
|
|
run: |
|
|
npm run tests
|