ares-server 0.7.5

A.R.E.S - Agentic Retrieval Enhanced Server: A production-grade agentic chatbot server with multi-provider LLM support, tool calling, RAG, and MCP integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Open Source Guard
on: [push, pull_request]
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Check for proprietary leaks
        run: |
          if grep -rn "kasino\|ehb\|ehealth\|dinkedin\|dsprint\|dirmacs-service-key\|bom@dirmacs\|eruka-context\.toml" src/ migrations/ 2>/dev/null; then
            echo "::error::Proprietary content detected in open-source repo"
            exit 1
          fi
          echo "✓ No proprietary content found"