This commit is contained in:
Pavel Zorin 2025-11-19 19:23:37 +01:00
parent 5da997541b
commit 7b91f2182b
2 changed files with 5 additions and 3 deletions

View file

@ -374,6 +374,8 @@ jobs:
- name: Run Entity Extraction Test
env:
ENV: 'dev'
# remove when https://github.com/BerriAI/litellm/issues/16810 is fixed
LITELLM_LOCAL_MODEL_COST_MAP: "True"
LLM_MODEL: ${{ secrets.LLM_MODEL }}
LLM_ENDPOINT: ${{ secrets.LLM_ENDPOINT }}
LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
@ -402,6 +404,8 @@ jobs:
- name: Run Feedback Enrichment Test
env:
ENV: 'dev'
# remove when https://github.com/BerriAI/litellm/issues/16810 is fixed
LITELLM_LOCAL_MODEL_COST_MAP: "True"
LLM_MODEL: ${{ secrets.LLM_MODEL }}
LLM_ENDPOINT: ${{ secrets.LLM_ENDPOINT }}
LLM_API_KEY: ${{ secrets.LLM_API_KEY }}

View file

@ -9,9 +9,7 @@ from pathlib import Path
import sys
import uuid
from tenacity import retry, stop_after_attempt, wait_fixed, wait_incrementing
from cognee.api.health import HealthStatus
from tenacity import retry, stop_after_attempt, wait_incrementing
class TestCogneeServerStart(unittest.TestCase):