diff --git a/.github/workflows/examples_tests.yml b/.github/workflows/examples_tests.yml index 406420351..df007a576 100644 --- a/.github/workflows/examples_tests.yml +++ b/.github/workflows/examples_tests.yml @@ -85,8 +85,8 @@ jobs: run: uv run python ./cognee/tests/tasks/descriptive_metrics/neo4j_metrics_test.py - test-multiple-examples: - name: Run Multiple Example Scripts + test-dynamic-steps-metrics: + name: Run Dynamic Steps Example runs-on: ubuntu-22.04 steps: - name: Check out repository @@ -97,7 +97,7 @@ jobs: with: python-version: '3.11.x' - - name: Run Dynamic Steps Example + - name: Run Dynamic Steps Tests env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} LLM_MODEL: ${{ secrets.LLM_MODEL }} @@ -110,6 +110,18 @@ jobs: EMBEDDING_API_VERSION: ${{ secrets.EMBEDDING_API_VERSION }} run: uv run python ./examples/python/dynamic_steps_example.py + test-temporal-example: + name: Run Temporal Tests + runs-on: ubuntu-22.04 + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Cognee Setup + uses: ./.github/actions/cognee_setup + with: + python-version: '3.11.x' + - name: Run Temporal Example env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} @@ -123,6 +135,18 @@ jobs: EMBEDDING_API_VERSION: ${{ secrets.EMBEDDING_API_VERSION }} run: uv run python ./examples/python/temporal_example.py + test-ontology-example: + name: Run Ontology Tests + runs-on: ubuntu-22.04 + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Cognee Setup + uses: ./.github/actions/cognee_setup + with: + python-version: '3.11.x' + - name: Run Ontology Demo Example env: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} @@ -136,18 +160,17 @@ jobs: EMBEDDING_API_VERSION: ${{ secrets.EMBEDDING_API_VERSION }} run: uv run python ./examples/python/ontology_demo_example.py - - name: Run Temporal Example - env: - OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - LLM_MODEL: ${{ secrets.LLM_MODEL }} - LLM_ENDPOINT: ${{ secrets.LLM_ENDPOINT }} - LLM_API_KEY: ${{ secrets.LLM_API_KEY }} - LLM_API_VERSION: ${{ secrets.LLM_API_VERSION }} - EMBEDDING_MODEL: ${{ secrets.EMBEDDING_MODEL }} - EMBEDDING_ENDPOINT: ${{ secrets.EMBEDDING_ENDPOINT }} - EMBEDDING_API_KEY: ${{ secrets.EMBEDDING_API_KEY }} - EMBEDDING_API_VERSION: ${{ secrets.EMBEDDING_API_VERSION }} - run: uv run python ./examples/python/temporal_example.py + test-agentic-reasoning: + name: Run Agentic Reasoning Tests + runs-on: ubuntu-22.04 + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Cognee Setup + uses: ./.github/actions/cognee_setup + with: + python-version: '3.11.x' - name: Run Agentic Reasoning Example env: