forked from 0xWheatyz/SPARC
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2bbf2d70bb |
@@ -47,27 +47,12 @@ STORAGE_BACKEND=local
|
|||||||
# AWS_SECRET_ACCESS_KEY=minioadmin
|
# AWS_SECRET_ACCESS_KEY=minioadmin
|
||||||
# To start MinIO locally: docker compose --profile s3 up -d minio
|
# To start MinIO locally: docker compose --profile s3 up -d minio
|
||||||
|
|
||||||
# ---- LLM ----
|
|
||||||
|
|
||||||
# LLM model to use via OpenRouter
|
|
||||||
# Supported: anthropic/claude-3.5-sonnet, openai/gpt-4o, openai/gpt-4o-mini,
|
|
||||||
# google/gemini-pro-1.5, meta-llama/llama-3.1-70b-instruct
|
|
||||||
# MODEL=anthropic/claude-3.5-sonnet
|
|
||||||
|
|
||||||
# ---- Cache ----
|
# ---- Cache ----
|
||||||
|
|
||||||
# When USE_CACHE=true: check database for cached responses before making API calls
|
# When USE_CACHE=true: check database for cached responses before making API calls
|
||||||
# When USE_CACHE=false: always make fresh API calls (still stores results in database)
|
# When USE_CACHE=false: always make fresh API calls (still stores results in database)
|
||||||
USE_CACHE=true
|
USE_CACHE=true
|
||||||
|
|
||||||
# SERP API cache TTL in hours (how long cached search results are considered fresh)
|
|
||||||
# SERP_CACHE_TTL_HOURS=24
|
|
||||||
|
|
||||||
# ---- Logging ----
|
|
||||||
|
|
||||||
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
|
|
||||||
# LOG_LEVEL=INFO
|
|
||||||
|
|
||||||
# ---- Webhooks ----
|
# ---- Webhooks ----
|
||||||
|
|
||||||
# Comma-separated list of webhook URLs for job completion and alert notifications
|
# Comma-separated list of webhook URLs for job completion and alert notifications
|
||||||
|
|||||||
@@ -33,6 +33,14 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
ruff check SPARC/ tests/
|
ruff check SPARC/ tests/
|
||||||
|
|
||||||
|
- name: Install Node.js and check TypeScript types
|
||||||
|
shell: sh
|
||||||
|
run: |
|
||||||
|
apk add --no-cache nodejs npm
|
||||||
|
cd frontend
|
||||||
|
npm ci
|
||||||
|
npx tsc --noEmit
|
||||||
|
|
||||||
- name: Run pytest
|
- name: Run pytest
|
||||||
shell: sh
|
shell: sh
|
||||||
env:
|
env:
|
||||||
|
|||||||
Reference in New Issue
Block a user