Disable litellm telemetry across multiple modules for improved perfor… #532
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Python package | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set environment variables | |
run: | | |
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY || 'sk-test-key-for-github-actions-testing-only-not-real' }}" >> $GITHUB_ENV | |
echo "OPENAI_API_BASE=${{ secrets.OPENAI_API_BASE || 'https://api.openai.com/v1' }}" >> $GITHUB_ENV | |
echo "OPENAI_MODEL_NAME=${{ secrets.OPENAI_MODEL_NAME || 'gpt-4o-mini' }}" >> $GITHUB_ENV | |
echo "LOGLEVEL=DEBUG" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: | | |
cd src/praisonai | |
python -m pip install --upgrade pip | |
python -m pip install flake8 pytest | |
python -m pip install ."[ui,gradio,api,agentops,google,openai,anthropic,cohere,chat,code,realtime,call,crewai,autogen]" | |
python -m pip install duckduckgo_search | |
python -m pip install pytest-asyncio pytest-cov | |
# Install knowledge dependencies from praisonai-agents | |
python -m pip install "praisonaiagents[knowledge]" | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Debug API Key Status | |
run: | | |
echo "🔍 Checking API key availability..." | |
if [ -n "${{ secrets.OPENAI_API_KEY }}" ]; then | |
echo "✅ GitHub secret OPENAI_API_KEY is available" | |
echo "🔑 API key starts with: $(echo "$OPENAI_API_KEY" | cut -c1-7)..." | |
else | |
echo "⚠️ GitHub secret OPENAI_API_KEY is NOT set - using fallback" | |
echo "🔑 Using fallback key: sk-test-key..." | |
fi | |
echo "🌐 API Base: $OPENAI_API_BASE" | |
echo "🤖 Model: $OPENAI_MODEL_NAME" | |
# - name: Lint with flake8 | |
# run: | | |
# # stop the build if there are Python syntax errors or undefined names | |
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pytest | |
run: | | |
cd src/praisonai && python tests/test_runner.py --pattern fast |