Skip to content

Add tests + docs for BaseStatistics and generalize its code #1107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 9, 2025

Conversation

eero-t
Copy link
Contributor

@eero-t eero-t commented Jan 3, 2025

Description

Add tests + docs for BaseStatistics and generalize its code.

Issues

n/a.

Type of change

  • Others (enhancement, documentation, validation, etc.)

Dependencies

Update: Earlier CI required fix to unrelated fine-tuning code (#1446), but that does not seem to be necessary any more.

Tests

Pylint likes the change, and I manually checked ChatQnA microservice before and after the change.

@eero-t eero-t requested a review from lvliang-intel as a code owner January 3, 2025 12:08
@eero-t eero-t marked this pull request as draft January 3, 2025 12:08
@eero-t
Copy link
Contributor Author

eero-t commented Jan 3, 2025

Setting as draft, until I've done more testing on it.

Copy link

codecov bot commented Jan 3, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Files with missing lines Coverage Δ
comps/cores/mega/base_statistics.py 100.00% <100.00%> (+57.89%) ⬆️

... and 1 file with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@eero-t
Copy link
Contributor Author

eero-t commented Jan 3, 2025

Attention: Patch coverage is 14.28571% with 12 lines in your changes missing coverage. Please review.

Hm. It appears that statistics output is not tested, so none of the code I changed is covered.

Because my refactoring removed more code than it added, the overall coverage should have improved though.

@eero-t eero-t marked this pull request as ready for review January 3, 2025 16:32
@eero-t
Copy link
Contributor Author

eero-t commented Jan 3, 2025

Was hard finding a microservice providing these metrics. None of "DocSum" ones provided them, but "ChatQnA" had one.

It works the same before and after the change:

$ curl --no-progress-meter 172.21.145.237:7000/v1/statistics | jq
{
  "opea_service@retriever_redis": {
    "p50_latency": 0.0011343955993652344,
    "p99_latency": 0.002569167613983175,
    "average_latency": 0.0012106266286638048,
    "p50_latency_first_token": null,
    "p99_latency_first_token": null,
    "average_latency_first_token": null
  }
}

@Spycsh
Copy link
Member

Spycsh commented Jan 6, 2025

Attention: Patch coverage is 14.28571% with 12 lines in your changes missing coverage. Please review.

Hm. It appears that statistics output is not tested, so none of the code I changed is covered.

Because my refactoring removed more code than it added, the overall coverage should have improved though.

Thanks for adding documentation. Could you also add the test to cover your code? There is a very simple test of this functionality here https://github.com/eero-t/GenAIComps/blob/stats/tests/cores/mega/test_base_statistics.py. You can add some unit test there to for coverage. (The original test init a server so the code is not detected by the coverage test I guess).

@eero-t
Copy link
Contributor Author

eero-t commented Feb 14, 2025

Thanks for adding documentation. Could you also add the test to cover your code? There is a very simple test of this functionality here https://github.com/eero-t/GenAIComps/blob/stats/tests/cores/mega/test_base_statistics.py. You can add some unit test there to for coverage. (The original test init a server so the code is not detected by the coverage test I guess).

@Spycsh Rebased to main add improved code coverage to 100%. To get CI passing, I had to fix regex syntax error in unrelated code. Ready for merge?

(Sorry for the large number of (force) pushes, it took a while until I found other reason why CI failed to fail parse test Python code although it was pylint clean and ran fine locally.)

@eero-t
Copy link
Contributor Author

eero-t commented Feb 21, 2025

Rebased on main in hopes it fixes the mystery CI issue.

@eero-t
Copy link
Contributor Author

eero-t commented Feb 24, 2025

Large amount of exceptions, completely unrelated to this PR, are visible in the failing CI test:

File "/usr/local/lib/python3.10/dist-packages/transformers/utils/hub.py", line 385, in cached_file
    raise EnvironmentError(
OSError: We couldn't connect to 'https://huggingface.co/' to load this file, couldn't find it in the cached files and it looks like meta-llama/Meta-Llama-3-8B-Instruct is not the path to a directory containing a file named config.json.
Checkout your internet connection or see how to run the library in offline mode at 'https://huggingface.co/docs/transformers/installation#offline-mode'.

=> CI should use already downloaded models, not try to re-download them on test runs.

@xiguiw
Copy link
Collaborator

xiguiw commented Feb 25, 2025

Update the branch to Check CI again.

@xiguiw
Copy link
Collaborator

xiguiw commented Feb 25, 2025

ain add improved code coverage to 100%. To get CI passing, I had to fix regex syntax error in unrelated code. Ready for merge?

add improved code coverage to 100%.
@eero-t
Is this done?

@eero-t
Copy link
Contributor Author

eero-t commented Mar 24, 2025

Changes

Split the changes only distantly related to this into their own PRs (#1446 + #1447) and rebased this to main.

CI status

CI example-test fail is completely unrelated to these changes, as its "ChatQnA run" fails in vLLM image build (!?!):

Cloning into 'vllm-fork'...
Build all the images with --no-cache, check docker_image_build.log for details...
time="2025-03-24T15:25:25Z" level=warning msg="The \"http_proxy\" variable is not set. Defaulting to a blank string."
time="2025-03-24T15:25:25Z" level=warning msg="The \"https_proxy\" variable is not set. Defaulting to a blank string."
time="2025-03-24T15:25:25Z" level=warning msg="The \"no_proxy\" variable is not set. Defaulting to a blank string."
failed to solve: process "/bin/sh -c pip install --no-cache-dir --upgrade pip setuptools &&     if [ ${ARCH} = \"cpu\" ]; then         PIP_EXTRA_INDEX_URL=\"--extra-index-url [https://download.pytorch.org/whl/cpu\](https://download.pytorch.org/whl/cpu/)";     else         PIP_EXTRA_INDEX_URL=\"\";     fi &&     pip install --no-cache-dir torch torchvision ${PIP_EXTRA_INDEX_URL} &&     pip install --no-cache-dir ${PIP_EXTRA_INDEX_URL} -r /home/user/comps/retrievers/src/requirements.txt &&     pip install opentelemetry-api==1.29.0 opentelemetry-exporter-otlp==1.29.0 opentelemetry-sdk==1.29.0" did not complete successfully: exit code: 1

@xiguiw
Copy link
Collaborator

xiguiw commented Mar 26, 2025

remind

@eero-t

Split the changes only distantly related to this into their own PRs (#1446 + #1447) and rebased this to main.

If you split changes into #1446 1447.
Are you still working on this PR? Or close this one

@yinghu5 yinghu5 added the A2 ready to fix label Mar 26, 2025
@yinghu5 yinghu5 requested a review from xiguiw March 26, 2025 07:30
@eero-t
Copy link
Contributor Author

eero-t commented Mar 26, 2025

Are you still working on this PR? Or close this one

@xiguiw There's nothing to work, PR works fine and passes CI. Only reviews + merging are missing.

@yinghu5 yinghu5 requested a review from louie-tsai March 28, 2025 05:25
@eero-t eero-t force-pushed the stats branch 2 times, most recently from f6949ce to 8d2e698 Compare March 28, 2025 10:08
@eero-t
Copy link
Contributor Author

eero-t commented Mar 28, 2025

No code changes, just rebase to main, in hope it fixes the (unrelated) CI issue.

@eero-t
Copy link
Contributor Author

eero-t commented Mar 31, 2025

No changes, just rebase to main. CI doc building issue has gone away, but example-test is still failing:

n=159
...
 [ vllm-llm ] HTTP status is not 200. Received status was 000
...
Error: Process completed with exit code 1.

This PR touches only code called by /v1/statistics endpoint => collect_all_statistics(), and tests & docs for that.

It does not touch vLLM or anything related to its querying, so CI failure is completely unrelated to this PR.

@eero-t
Copy link
Contributor Author

eero-t commented Apr 4, 2025

Rebased to main to see whether the regression in CI tests has been fixed => it was.

Thanks for adding documentation. Could you also add the test to cover your code?

@Spycsh Could you review / approve this?

@yinghu5 yinghu5 self-requested a review April 7, 2025 03:14
Copy link
Collaborator

@yinghu5 yinghu5 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thank you!

@eero-t
Copy link
Contributor Author

eero-t commented Apr 9, 2025

@xiguiw Now that this is 2x approved, maybe it could be merged for v1.3 release?

@lvliang-intel lvliang-intel merged commit e0081e8 into opea-project:main Apr 9, 2025
17 checks passed
@eero-t eero-t deleted the stats branch April 9, 2025 13:16
aMahanna added a commit to arangoml/GenAIComps1.2 that referenced this pull request Apr 11, 2025
commit 0060b04
Author: Yao Qing <[email protected]>
Date:   Fri Apr 11 21:43:56 2025 +0800

    Unified default port number for the same service in text2graph and text2sql (opea-project#1554)

    Signed-off-by: Yao, Qing <[email protected]>

commit 936aaa6
Author: chen, suyue <[email protected]>
Date:   Fri Apr 11 15:50:58 2025 +0800

    Fix image build issue (opea-project#1553)

    Signed-off-by: chensuyue <[email protected]>

commit 7714b05
Author: Abolfazl Shahbazi <[email protected]>
Date:   Fri Apr 11 00:05:04 2025 -0700

    Upgrade Torch and it's dependencies to v2.5.x for video-llama (opea-project#1551)

    Signed-off-by: Abolfazl Shahbazi <[email protected]>

commit 6e30a85
Author: Siddhi Velankar <[email protected]>
Date:   Thu Apr 10 21:00:26 2025 -0500

    Text to knowledge graph (text2kg) microservice implementation (opea-project#1472)

    * add all comps for text2kg

    Signed-off-by: siddhivelankar23 <[email protected]>

    * add tests

    Signed-off-by: siddhivelankar23 <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * update README

    Signed-off-by: siddhivelankar23 <[email protected]>

    * add DATA_PATH variable for tests

    Signed-off-by: siddhivelankar23 <[email protected]>

    * change port

    Signed-off-by: siddhivelankar23 <[email protected]>

    * review updates

    Signed-off-by: siddhivelankar23 <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * update neo4j hyperlink

    Signed-off-by: siddhivelankar23 <[email protected]>

    * update health check

    Signed-off-by: siddhivelankar23 <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    ---------

    Signed-off-by: siddhivelankar23 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 67933f4
Author: ZePan110 <[email protected]>
Date:   Thu Apr 10 16:32:14 2025 +0800

    Enhance CD workfow. (opea-project#1519)

    Signed-off-by: ZePan110 <[email protected]>

commit 6acacc8
Author: Letong Han <[email protected]>
Date:   Thu Apr 10 11:46:33 2025 +0800

    Support health check in dataprep component (opea-project#1546)

    * Support health check in dataprep component.
    Modify all related test scripts.

    Issue: opea-project/GenAIExamples#1699

    Signed-off-by: letonghan <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    ---------

    Signed-off-by: letonghan <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 62aa2cd
Author: Spycsh <[email protected]>
Date:   Thu Apr 10 10:38:46 2025 +0800

    align ports host/docker and simply some healthcheck logics (opea-project#1499)

    * align ports host/docker and simply some healthcheck

    * fix port

    * revert

commit 022313c
Author: ZePan110 <[email protected]>
Date:   Thu Apr 10 09:56:47 2025 +0800

    Adaptation to vllm v0.8.3 build paths and limit vllm version (opea-project#1544)

    Signed-off-by: ZePan110 <[email protected]>

commit 1e37512
Author: Abolfazl Shahbazi <[email protected]>
Date:   Wed Apr 9 18:55:06 2025 -0700

    Misc apt and pip updates to Dockerfiles (opea-project#1542)

    * Misc apt and pip updates to Dockerfiles

    Signed-off-by: Abolfazl Shahbazi <[email protected]>

commit a941fc5
Author: chen, suyue <[email protected]>
Date:   Thu Apr 10 02:24:41 2025 +0800

    upgrade setuptools version adapt to the latest wheel version (opea-project#1545)

    Signed-off-by: chensuyue <[email protected]>
    Co-authored-by: Abolfazl Shahbazi <[email protected]>

commit e0081e8
Author: Eero Tamminen <[email protected]>
Date:   Wed Apr 9 16:06:33 2025 +0300

    Add tests + docs for BaseStatistics and generalize its code (opea-project#1107)

    Signed-off-by: Eero Tamminen <[email protected]>

commit 927dc44
Author: Siddhi Velankar <[email protected]>
Date:   Tue Apr 8 21:57:28 2025 -0500

    Struct2graph microservice for HybridRAG (opea-project#1502)

    Signed-off-by: siddhivelankar23 <[email protected]>

commit 5bd5309
Author: XinyaoWa <[email protected]>
Date:   Wed Apr 9 09:09:22 2025 +0800

    Update readme for supporting deepseek and phi4 (opea-project#1522)

    Signed-off-by: Xinyao Wang <[email protected]>

commit 8002e8b
Author: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date:   Wed Apr 9 09:09:03 2025 +0800

    [pre-commit.ci] pre-commit autoupdate (opea-project#1531)

    Signed-off-by: Sun, Xuehao <[email protected]>

commit 0c106d9
Author: jilongW <[email protected]>
Date:   Wed Apr 9 09:08:24 2025 +0800

    Fix xtune output location is wrong and update doc (opea-project#1533)

    Signed-off-by: jilongwa <[email protected]>

commit 1f5ec91
Author: Chun Tao <[email protected]>
Date:   Tue Apr 8 17:57:46 2025 -0700

    Fix GenAIExamples opea-project#1607 by adding timeout to the wav2lip request (opea-project#1540)

    Signed-off-by: Chun Tao <[email protected]>

commit 97d0ec5
Author: rbrugaro <[email protected]>
Date:   Tue Apr 8 14:02:02 2025 -0700

    separate test script ports vs. ports in code/readme/compose (opea-project#1478)

    * separate test script ports vs. ports in code/readme/compose

    Signed-off-by: Rita Brugarolas <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * exported DATAPREP_PORT in script to avoid default 5000 port

    Signed-off-by: Rita Brugarolas <[email protected]>

    * missing port export in ci test

    Signed-off-by: Rita Brugarolas <[email protected]>

    * changed DATAPREP port to 5001 because 5000 is reserved for local registry

    Signed-off-by: Rita Brugarolas <[email protected]>

    * pin sentence transformers because latests 4.0.2 breaks

    Signed-off-by: Rita Brugarolas <[email protected]>

    * Revert "changed DATAPREP port to 5001 because 5000 is reserved for local registry"

    This reverts commit 1806e80.

    Signed-off-by: Rita Brugarolas <[email protected]>

    * Revert "pin sentence transformers because latests 4.0.2 breaks"

    This reverts commit df066a7.

    Signed-off-by: Rita Brugarolas <[email protected]>

    ---------

    Signed-off-by: Rita Brugarolas <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Letong Han <[email protected]>

commit f692a32
Author: Sharan Shirodkar <[email protected]>
Date:   Tue Apr 8 10:34:14 2025 -0400

    Hermes-2-Pro-Llama-3-8B model to be deprecated from Prediction Guard platform (opea-project#1366)

    Signed-off-by: sharanshirodkar7 <[email protected]>

commit b7a04bf
Author: dolpher <[email protected]>
Date:   Tue Apr 8 22:25:44 2025 +0800

    Sync values yaml file for 1.3 release (opea-project#1524)

    * Sync values yaml file for 1.3 release

    Signed-off-by: Dolpher Du <[email protected]>

commit dc5edc3
Author: XinyaoWa <[email protected]>
Date:   Tue Apr 8 21:12:18 2025 +0800

    Support Phi-4-mini and Phi-4-multimodal-instruct in LLM text-generation comps on gaudi mode (opea-project#1335)

    Signed-off-by: Xinyao Wang <[email protected]>

commit d51a136
Author: Liang Lv <[email protected]>
Date:   Tue Apr 8 20:25:27 2025 +0800

    Add native LLM microservice using IPEX (opea-project#1337)

    Signed-off-by: lvliang-intel <[email protected]>

commit c96b124
Author: lkk <[email protected]>
Date:   Tue Apr 8 15:15:28 2025 +0800

    format react agent llama response to openai for openwebui display. (opea-project#1467)

    Signed-off-by: lkk <[email protected]>

commit e9ba084
Author: Spycsh <[email protected]>
Date:   Tue Apr 8 13:46:52 2025 +0800

    Refactor multimodal dependencies (opea-project#1527)

    * Refactor multimodal dependencies

    - move asr/lvm/tts => 3rd parties
    - unzip video-llama path as default

    Signed-off-by: Spycsh <[email protected]>

commit cfc43ee
Author: Anthony Mahanna <[email protected]>
Date:   Tue Apr 8 00:16:53 2025 -0400

    feature: OpeaStore Class (opea-project#1493)

    Signed-off-by: Anthony Mahanna <[email protected]>

commit 13c0e4d
Author: ZePan110 <[email protected]>
Date:   Mon Apr 7 23:42:37 2025 +0800

    Limit vllm and vllm-fork tags (opea-project#1529)

    Signed-off-by: ZePan110 <[email protected]>

commit 9e5e9be
Author: Abolfazl Shahbazi <[email protected]>
Date:   Fri Apr 4 11:19:23 2025 -0700

    Update Gaudi Docker to v1.19.0 and PyTorch Installer 2.5.1 (opea-project#1513)

    Signed-off-by: Abolfazl Shahbazi <[email protected]>
    Co-authored-by: chen, suyue <[email protected]>

commit c787ce6
Author: Mustafa <[email protected]>
Date:   Fri Apr 4 08:54:33 2025 -0700

    Data Ingestion and Retrieval with custom index_name (opea-project#1439)

    * CodeGen initial

    Signed-off-by: Mustafa <[email protected]>

    * code update

    Signed-off-by: Mustafa <[email protected]>

    * code update

    Signed-off-by: Mustafa <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * adding index_name variable

    Signed-off-by: Mustafa <[email protected]>

    * update unit tests

    Signed-off-by: Mustafa <[email protected]>

    * update the tests

    Signed-off-by: Mustafa <[email protected]>

    * code update & add ingest_with_index test

    Signed-off-by: Mustafa <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * update redis test

    Signed-off-by: Mustafa <[email protected]>

    * update retrievers

    Signed-off-by: Mustafa <[email protected]>

    * update redis-delete_files

    Signed-off-by: Mustafa <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    ---------

    Signed-off-by: Mustafa <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Abolfazl Shahbazi <[email protected]>

commit 52b9172
Author: Dina Suehiro Jones <[email protected]>
Date:   Thu Apr 3 18:10:40 2025 -0700

    Unset TEI_EMBEDDING_ENDPOINT when running multimodal redis retriever tests (opea-project#1515)

    Signed-off-by: Dina Suehiro Jones <[email protected]>

commit 80ef317
Author: jilongW <[email protected]>
Date:   Thu Apr 3 20:13:39 2025 +0800

    Add xtune to finetuning (opea-project#1432)

    Signed-off-by: jilongwa <[email protected]>

commit a763c35
Author: Chun Tao <[email protected]>
Date:   Thu Apr 3 00:30:35 2025 -0700

    Add in entrypoint new download links for wav2lip and wav2lip_gan models, as old links were deprecated. (opea-project#1523)

    Signed-off-by: Chun Tao <[email protected]>

commit d133eee
Author: chen, suyue <[email protected]>
Date:   Thu Apr 3 14:16:53 2025 +0800

    remove concurrency in image build and push workflow (opea-project#1510)

    1. Remove concurrency setting in image build and push workflow, cause the build scope is not the same for each push.
    2. Fix a duplicate container name in agent test.

    Signed-off-by: chensuyue <[email protected]>

commit 2a0ce2a
Author: Spycsh <[email protected]>
Date:   Thu Apr 3 14:10:27 2025 +0800

    minor fix gpt-sovits service names (opea-project#1521)

commit cec2e1d
Author: chen, suyue <[email protected]>
Date:   Thu Apr 3 09:41:08 2025 +0800

    Fix CI workflow (opea-project#1518)

    Signed-off-by: chensuyue <[email protected]>

commit 11b1969
Author: Louie Tsai <[email protected]>
Date:   Wed Apr 2 16:28:02 2025 -0700

    Enable Telemetry Tracing in Agent Comp and also add class name along with func name as span name for tracing (opea-project#1503)

    * Trace Agent functions and get class name for opea_telemtry tracing

    Signed-off-by: Louie, Tsai <[email protected]>
    Signed-off-by: Tsai, Louie <[email protected]>

    * seperate llm invoke into a standalone function for tracing

    Signed-off-by: Tsai, Louie <[email protected]>

    ---------

    Signed-off-by: Louie, Tsai <[email protected]>
    Signed-off-by: Tsai, Louie <[email protected]>

commit a8f300f
Author: Chaunte W. Lacewell <[email protected]>
Date:   Wed Apr 2 02:45:12 2025 -0700

    VDMS langchain package update (opea-project#1317)

    * Update VDMS related components

    * Pinned protobuf==4.24.2 for vdms to avoid issues

    * Move opentelemetry installation to requirements file like others, unset proxy in opensearch tests. Opensearch tests pass locally with setting vm.max_map_count

    * pin protobuf and downgrade opentelemetry to v1.27.0 in dataprep and retriever dockerfiles

    * Move opentelemetry installation to requirements file like others, unset proxy in opensearch tests. Opensearch tests pass locally with setting vm.max_map_count

    Signed-off-by: Lacewell, Chaunte W <[email protected]>
    Co-authored-by: chen, suyue <[email protected]>

commit 40d431a
Author: Shifani Rajabose <[email protected]>
Date:   Wed Apr 2 03:55:22 2025 -0400

    [Bug: 1379] Added Multimodal support for Milvus for retriever component (opea-project#1381)

    Added Multimodal support for Milvus for retriever component

    Fixes opea-project#1379

    Co-authored-by: Jaini, Pallavi <[email protected]>
    Co-authored-by: Kavulya, Soila <[email protected]>
    Signed-off-by:  Ghosh, Soumyadip <[email protected]>
    Signed-off-by:  Piroozan, Nariman <[email protected]>

    Signed-off-by: Shifani Rajabose <[email protected]>
    Signed-off-by: pallavi.jaini <[email protected]>

commit b2eee3a
Author: Melanie Hart Buehler <[email protected]>
Date:   Wed Apr 2 00:53:49 2025 -0700

    MultimodalQnA audio features completion (opea-project#1433)

    Signed-off-by: Melanie Buehler <[email protected]>

commit 3c1cb20
Author: dolpher <[email protected]>
Date:   Wed Apr 2 13:39:44 2025 +0800

    Fix model cache path and use Random to avoid ns conflict (opea-project#1500)

    Signed-off-by: Dolpher Du <[email protected]>

commit 4a15795
Author: Spycsh <[email protected]>
Date:   Wed Apr 2 13:06:21 2025 +0800

    Integrate UI-TARS vLLM in lvm component (opea-project#1458)

commit 1dddab0
Author: Letong Han <[email protected]>
Date:   Wed Apr 2 10:59:52 2025 +0800

    Fix Dataprep ingest PPT and async issues (opea-project#1504)

    Signed-off-by: letonghan <[email protected]>

commit 981faf5
Author: chen, suyue <[email protected]>
Date:   Wed Apr 2 10:53:28 2025 +0800

    add model cache for example test (opea-project#1509)

    Signed-off-by: chensuyue <[email protected]>

commit c512141
Author: ZePan110 <[email protected]>
Date:   Wed Apr 2 10:45:48 2025 +0800

    Remove langchain-huggingface from requirement. (opea-project#1505)

    Signed-off-by: ZePan110 <[email protected]>

commit 2b0cd08
Author: Letong Han <[email protected]>
Date:   Tue Apr 1 23:14:29 2025 +0800

    unify service ports in compose and READMEs (opea-project#1506)

    Signed-off-by: letonghan <[email protected]>

commit de882e5
Author: Abolfazl Shahbazi <[email protected]>
Date:   Mon Mar 31 22:40:28 2025 -0700

    Update nofile's hard limit to 262144 for opensearch (opea-project#1495)

    Signed-off-by: Abolfazl Shahbazi <[email protected]>

commit 380f95c
Author: Eero Tamminen <[email protected]>
Date:   Mon Mar 31 14:40:44 2025 +0300

    Fix finetuning python regex syntax error (opea-project#1446)

    Signed-off-by: Eero Tamminen <[email protected]>

commit ea3374f
Author: Trawinski, Dariusz <[email protected]>
Date:   Mon Mar 31 13:12:33 2025 +0200

    ignore false positive errors in reseting cache permissions (opea-project#1489)

    Signed-off-by: Dariusz Trawinski <[email protected]>

commit 411af51
Author: chen, suyue <[email protected]>
Date:   Mon Mar 31 11:56:46 2025 +0800

    CICD update to adapt the new xeon test cluster (opea-project#1475)

    Signed-off-by: chensuyue <[email protected]>

commit 342c1ed
Author: Siddhi Velankar <[email protected]>
Date:   Sat Mar 29 09:49:19 2025 -0500

    Docker support for nebula (opea-project#1396)

    Signed-off-by: siddhivelankar23 <[email protected]>

commit 7a26282
Author: Spycsh <[email protected]>
Date:   Fri Mar 28 18:03:05 2025 +0800

    Bump version of web search (opea-project#1451)

commit 8533924
Author: chen, suyue <[email protected]>
Date:   Fri Mar 28 11:10:11 2025 +0800

    add nginx src into example test trigger path (opea-project#1474)

    Signed-off-by: chensuyue <[email protected]>

commit 3c606ac
Author: ZePan110 <[email protected]>
Date:   Fri Mar 28 10:10:57 2025 +0800

    Revert "Support parametrization of nginx port (opea-project#1456)" (opea-project#1473)

    This reverts commit d58d320.

commit 1871dec
Author: sri-intel <[email protected]>
Date:   Thu Mar 27 11:01:27 2025 -0400

    remote endpoint support (opea-project#1399)

    Signed-off-by: Srinarayan Srikanthan <[email protected]>

commit ac38d87
Author: chen, suyue <[email protected]>
Date:   Thu Mar 27 22:55:07 2025 +0800

    Enhance test env clean up (opea-project#1469)

    * Update test env clean up

    Signed-off-by: chensuyue <[email protected]>

commit 772ef6e
Author: XinyaoWa <[email protected]>
Date:   Thu Mar 27 21:48:48 2025 +0800

    Enlarge DocSum prompt buffer (opea-project#1471)

    Signed-off-by: Xinyao Wang <[email protected]>

commit 4252121
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 14:06:22 2025 +0800

    Use model cache for dataprep docker compose test. (opea-project#1450)

    Use model cache for dataprep docker compose test.
    Fix web_retrievers typo

    Signed-off-by: ZePan110 <[email protected]>

commit 0672112
Author: xiguiw <[email protected]>
Date:   Thu Mar 27 13:24:56 2025 +0800

    Update TEI docker image to 1.6 (opea-project#1453)

    update TEI docker image to ghcr.io/huggingface/text-embeddings-inference:cpu-1.6

    Signed-off-by: Wang, Xigui <[email protected]>

commit 8ce0162
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 10:33:10 2025 +0800

    Use model cache for third_parties docker compose test. (opea-project#1464)

    Signed-off-by: ZePan110 <[email protected]>

commit 5d6ada9
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 10:32:46 2025 +0800

    Use model cache for agent and guardrails docker compose test. (opea-project#1462)

    Signed-off-by: ZePan110 <[email protected]>

commit f34829a
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 10:32:29 2025 +0800

    Use model cache for llms docker compose test. (opea-project#1463)

    Signed-off-by: ZePan110 <[email protected]>

commit 8170dfb
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 10:07:35 2025 +0800

    Use model cache for retrievers docker compose tests. (opea-project#1460)

    Use model cache for retrievers docker compose tests

    Signed-off-by: ZePan110 <[email protected]>

commit 3f3b006
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 10:06:59 2025 +0800

    Use model cache for rerankings docker compose tests. (opea-project#1459)

    Use model cache for rerankings docker compose tests.

    Signed-off-by: ZePan110 <[email protected]>

commit 206de27
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 10:06:41 2025 +0800

    Use model cache for web_retriever docker compose tests. (opea-project#1461)

    Use model cache for web_retriever docker compose tests

    Signed-off-by: ZePan110 <[email protected]>

commit d58d320
Author: ZePan110 <[email protected]>
Date:   Thu Mar 27 09:40:42 2025 +0800

    Support parametrization of nginx port (opea-project#1456)

    Signed-off-by: ZePan110 <[email protected]>

commit 78b94fc
Author: Trawinski, Dariusz <[email protected]>
Date:   Wed Mar 26 12:19:46 2025 +0100

    text generation, embedding and reranking with ovms (opea-project#1318)

    Signed-off-by: Dariusz Trawinski <[email protected]>

commit d5cd3e4
Author: ZePan110 <[email protected]>
Date:   Wed Mar 26 13:38:45 2025 +0800

    Fix issue with orphaned containers in the Github runtime program for running tests. (opea-project#1454)

    Fix issue opea-project#1323
    Signed-off-by: ZePan110 <[email protected]>

commit 11a061a
Author: ZePan110 <[email protected]>
Date:   Wed Mar 26 13:37:53 2025 +0800

    Use model cache for embeddings docker compose test. (opea-project#1452)

    Use model cache for embeddings docker compose test.

    Signed-off-by: ZePan110 <[email protected]>

commit ed4acef
Author: Letong Han <[email protected]>
Date:   Wed Mar 26 09:38:30 2025 +0800

    Fix Retriever Async Issue (opea-project#1457)

    Signed-off-by: letonghan <[email protected]>

commit d8bd6ee
Author: Letong Han <[email protected]>
Date:   Wed Mar 26 09:38:12 2025 +0800

    fix function name issue (opea-project#1426)

    Signed-off-by: letonghan <[email protected]>

commit be4c04f
Author: Louie Tsai <[email protected]>
Date:   Tue Mar 25 18:19:57 2025 -0700

    Return Mega/Micro Service Version number at runtime (opea-project#912)

    Signed-off-by: Tsai, Louie <[email protected]>

commit 3e559df
Author: ZePan110 <[email protected]>
Date:   Tue Mar 25 15:31:17 2025 +0800

    Fix Deprecation warnings in logs service logs (opea-project#1444)

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * Fix issue

    Signed-off-by: ZePan110 <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * Update requirements

    Signed-off-by: ZePan110 <[email protected]>

    ---------

    Signed-off-by: ZePan110 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 616c00c
Author: chen, suyue <[email protected]>
Date:   Tue Mar 25 11:52:05 2025 +0800

    Update default model cache for new CI cluster (opea-project#1445)

    Signed-off-by: chensuyue <[email protected]>

commit e73c22a
Author: ZePan110 <[email protected]>
Date:   Mon Mar 24 23:14:32 2025 +0800

    Use model cache for text2sql docker compose test. (opea-project#1436)

    Signed-off-by: ZePan110 <[email protected]>

commit d8b491c
Author: Eero Tamminen <[email protected]>
Date:   Mon Mar 24 16:33:05 2025 +0200

    Fix: make Orchestrator metrics singleton (opea-project#1301)

    Signed-off-by: Eero Tamminen <[email protected]>

commit eadfe2f
Author: chen, suyue <[email protected]>
Date:   Mon Mar 24 15:41:35 2025 +0800

    Fix default model cache adapt to the new test cluster (opea-project#1443)

    1. Fix default model cache adapt to the new test cluster
    2. Skip docker build container clean up for microservice test

    Signed-off-by: chensuyue <[email protected]>

commit 8f9ec23
Author: chen, suyue <[email protected]>
Date:   Mon Mar 24 13:49:44 2025 +0800

    Enhance docker clean up in CI (opea-project#1442)

    * enhance docker clean up
    * clean up invalid label

    Signed-off-by: chensuyue <[email protected]>

commit 02a2cdd
Author: XinyuYe-Intel <[email protected]>
Date:   Mon Mar 24 13:40:58 2025 +0800

    Added Mistral-Small-24B-Instruct-2501 and Mistral-Large-Instruct-2411 models support in text-gen (opea-project#1387)

    * added Mistral-Small-24B-Instruct-2501 and Mistral-Large-Instruct-2411 models in text-gen.

    Signed-off-by: Ye, Xinyu <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    ---------

    Signed-off-by: Ye, Xinyu <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit 559ebb2
Author: Eknath Baravkar <[email protected]>
Date:   Sat Mar 22 19:28:03 2025 +0530

    Refine the README for llms/doc-summarization (opea-project#1437)

    Signed-off-by: unknown <[email protected]>

commit c58fd39
Author: Dina Suehiro Jones <[email protected]>
Date:   Fri Mar 21 18:51:31 2025 -0700

    Fix curl commands in the LLaVA server README (opea-project#1427)

    Signed-off-by: dmsuehir <[email protected]>

commit 3bb51f7
Author: Dina Suehiro Jones <[email protected]>
Date:   Fri Mar 21 18:21:21 2025 -0700

    Fix failing data prep milvus multimodal tests that use the LVM (opea-project#1441)

    Signed-off-by: Dina Suehiro Jones <[email protected]>

commit 03ac6ed
Author: minmin-intel <[email protected]>
Date:   Fri Mar 21 11:38:54 2025 -0700

    Add redis-finance to dataprep (opea-project#1384)

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * redis finance code

    Signed-off-by: minmin-intel <[email protected]>

    * add two new packages

    Signed-off-by: minmin-intel <[email protected]>

    * fix

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * debug ci error

    Signed-off-by: minmin-intel <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * fix errors

    Signed-off-by: minmin-intel <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    * add readme and rename test script to run ci on gaudi

    Signed-off-by: minmin-intel <[email protected]>

    ---------

    Signed-off-by: minmin-intel <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

commit c65ceb2
Author: Spycsh <[email protected]>
Date:   Fri Mar 21 16:52:52 2025 +0800

    Add LLaMA Vision OH optimization (opea-project#1296)

    * Add LLaMA Vision OH optimization

    - Add mllama OH optimization
    - Fix LVM README and fix steps
    - add UT
    - fix 422 request body issue from wrapper to dependency
    - add LOGFLAG
    - add healthcheck
    - Upgrade HPU driver version
    - Correct compose file mllama names

commit 7044590
Author: Dina Suehiro Jones <[email protected]>
Date:   Thu Mar 20 18:51:35 2025 -0700

    Fix failing data prep redis multimodal tests that use the LVM (opea-project#1440)

    Signed-off-by: Dina Suehiro Jones <[email protected]>

commit 8493659
Author: chen, suyue <[email protected]>
Date:   Wed Mar 19 15:35:23 2025 +0800

    Add third party into test matrix (opea-project#1430)

    Signed-off-by: chensuyue <[email protected]>

commit ccef449
Author: Zhu Yongbo <[email protected]>
Date:   Wed Mar 19 13:52:17 2025 +0800

    Fix Dockerfile.intel_gpu build issue (opea-project#1429)

    Signed-off-by: Zhu, Yongbo <[email protected]>

commit 006bd91
Author: Shifani Rajabose <[email protected]>
Date:   Tue Mar 18 02:16:40 2025 -0400

    [Bug: 1378] Added Multimodal support for Milvus for dataprep component (opea-project#1380)

    * [Bug: 1378] Added Multimodal support for Milvus for dataprep component

    Fixes opea-project#1378
    Co-authored-by: Jaini, Pallavi <[email protected]>
    Signed-off-by:  Ghosh, Soumyadip <[email protected]>
    Signed-off-by:  Piroozan, Nariman <[email protected]>
    Signed-off-by: Kavulya, Soila <[email protected]>
    Signed-off-by: Rajabose, Shifani <[email protected]>
    Signed-off-by: Shifani Rajabose <[email protected]>

    ---------

    Signed-off-by: Shifani Rajabose <[email protected]>
    Signed-off-by: pallavi.jaini <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: pallavi.jaini <[email protected]>

commit 831c5a3
Author: Spycsh <[email protected]>
Date:   Mon Mar 17 13:33:38 2025 +0800

    vLLM lvm integration (opea-project#1362)

    * vLLM lvm integration

    - integrate vLLM LVMs and set vLLM as default
    - use OpenAI chat completions and cover single-image/text-only cases

commit 558a2f6
Author: minmin-intel <[email protected]>
Date:   Fri Mar 14 19:25:20 2025 -0700

    enable custom prompt for react_llama and react_langgraph (opea-project#1391)

    Signed-off-by: minmin-intel <[email protected]>

commit 3ebab3c
Author: Sun, Xuehao <[email protected]>
Date:   Fri Mar 14 17:55:56 2025 +0800

    Add GitHub Action to check and close stale issues and PRs (opea-project#1394)

    Signed-off-by: Sun, Xuehao <[email protected]>

commit b2b7908
Author: Louie Tsai <[email protected]>
Date:   Fri Mar 14 00:26:45 2025 -0700

    [Telemetry] use existed env variable instead of introducing new one (opea-project#1251)

    * try to leverage existed env variable instead of introducing new one

    Signed-off-by: Tsai, Louie <[email protected]>

    * remove ENABLE_OPEA_TELEMETRY getenv

    Signed-off-by: Tsai, Louie <[email protected]>

    ---------

    Signed-off-by: Tsai, Louie <[email protected]>

commit 986c138
Author: Letong Han <[email protected]>
Date:   Fri Mar 14 10:36:18 2025 +0800

    Fix dependency issue in Retriever (opea-project#1393)

    Add aiofiles in requirements.txt of retriever, which is caused by cross-component function call of retriever neo4j.

    Signed-off-by: letonghan <[email protected]>

commit e8994da
Author: Jonathan Minkin <[email protected]>
Date:   Thu Mar 13 03:35:06 2025 -0700

    Fix file list and index drop for opensearch (opea-project#1322)

    Signed-off-by: Jonathan Minkin <[email protected]>

commit d47127e
Author: Letong Han <[email protected]>
Date:   Thu Mar 13 15:25:07 2025 +0800

    Refine Dataprep Redis with Async Issue (opea-project#1390)

    Signed-off-by: letonghan <[email protected]>

commit b1d01a2
Author: Lianhao Lu <[email protected]>
Date:   Wed Mar 12 16:04:02 2025 +0800

    bridgetower/clip: add missing dependency for aiohttp (opea-project#1371)

    Signed-off-by: Lianhao Lu <[email protected]>

commit 492f028
Author: Shifani Rajabose <[email protected]>
Date:   Wed Mar 12 03:04:07 2025 -0400

    [Bug: 1375] Fix Readme errors in dataprep component for all VectorDBs (opea-project#1377)

    * [Bug: 1375] Fix Readme errors in dataprep component for all VectorDBs

    Fixes opea-project#1375
    Signed-off-by: Piroozan, Nariman <[email protected]>
    Signed-off-by:  Ghosh, Soumyadip <[email protected]>
    Signed-off-by:  Jaini, Pallavi <[email protected]>
    Signed-off-by: Kavulya, Soila <[email protected]>
    Signed-off-by: Shifani Rajabose <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    Signed-off-by: Shifani Rajabose <[email protected]>

    * Improve dataprep CI and fix pptx file ingesting bug (opea-project#1334)

    - Fix permission issue for when ingesting pptx file with embedded image
    - Add more test coverage to the dataprep CI and unify common dataprep CI test code for DB backends: qdrant, milvus, redis, pgvector

    Signed-off-by: Lianhao Lu <[email protected]>
    Signed-off-by: Shifani Rajabose <[email protected]>

    * Fix docker compose command in embedding BridgeTower readme (opea-project#1374)

    Signed-off-by: Dina Suehiro Jones <[email protected]>
    Signed-off-by: Shifani Rajabose <[email protected]>

    * Changes to checkin text2graph microservice (opea-project#1357)

    Signed-off-by: Raghava, Sharath <[email protected]>
    Signed-off-by: Shifani Rajabose <[email protected]>

    * [Bug: 1375] Fix Readme errors in dataprep component for all VectorDBs

    Fixes opea-project#1375
    Signed-off-by: Piroozan, Nariman <[email protected]>
    Signed-off-by:  Ghosh, Soumyadip <[email protected]>
    Signed-off-by:  Jaini, Pallavi <[email protected]>
    Signed-off-by: Kavulya, Soila <[email protected]>
    Signed-off-by: Shifani Rajabose <[email protected]>

    ---------

    Signed-off-by: Shifani Rajabose <[email protected]>
    Signed-off-by: Lianhao Lu <[email protected]>
    Signed-off-by: Dina Suehiro Jones <[email protected]>
    Signed-off-by: Raghava, Sharath <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Lianhao Lu <[email protected]>
    Co-authored-by: Dina Suehiro Jones <[email protected]>
    Co-authored-by: intelsharath <[email protected]>
    Co-authored-by: Liang Lv <[email protected]>

commit 8c6f2b1
Author: chen, suyue <[email protected]>
Date:   Wed Mar 12 14:25:30 2025 +0800

    Use the latest HabanaAI/vllm-fork release tag to build vllm-gaudi image (opea-project#1376)

    opea-project/GenAIExamples#1436
    ---------
    Signed-off-by: chensuyue <[email protected]>

commit f714d33
Author: chen, suyue <[email protected]>
Date:   Wed Mar 12 11:09:17 2025 +0800

    Filter none test scripts in test matrix (opea-project#1386)

    * filter none test scripts in test matrix

    Signed-off-by: chensuyue <[email protected]>

commit b93189d
Author: chyundunovDatamonsters <[email protected]>
Date:   Wed Mar 12 09:42:10 2025 +0700

    Add Dockerfile for build ROCm vLLM Docker image (opea-project#1372)

    * Add Dockerfile for build ROCm vLLM Docker image

    Signed-off-by: Chingis Yundunov <[email protected]>

commit e231574
Author: Jean Yu <[email protected]>
Date:   Sun Mar 9 22:46:10 2025 -0500

    add text2cypher component (opea-project#1319)

    Signed-off-by: jeanyu-habana <[email protected]>

commit 838d16d
Author: intelsharath <[email protected]>
Date:   Thu Mar 6 23:29:45 2025 -0800

    Changes to checkin text2graph microservice (opea-project#1357)

    Signed-off-by: Raghava, Sharath <[email protected]>

commit 60c20b5
Author: Dina Suehiro Jones <[email protected]>
Date:   Thu Mar 6 19:49:02 2025 -0800

    Fix docker compose command in embedding BridgeTower readme (opea-project#1374)

    Signed-off-by: Dina Suehiro Jones <[email protected]>

commit 24f5021
Author: Lianhao Lu <[email protected]>
Date:   Fri Mar 7 10:13:21 2025 +0800

    Improve dataprep CI and fix pptx file ingesting bug (opea-project#1334)

    - Fix permission issue for when ingesting pptx file with embedded image
    - Add more test coverage to the dataprep CI and unify common dataprep CI test code for DB backends: qdrant, milvus, redis, pgvector

    Signed-off-by: Lianhao Lu <[email protected]>

commit cbb8a82
Author: chen, suyue <[email protected]>
Date:   Wed Mar 5 11:47:56 2025 +0800

    update image push machine (opea-project#1361)

    Signed-off-by: chensuyue <[email protected]>

commit 1064b2b
Author: Eero Tamminen <[email protected]>
Date:   Tue Mar 4 14:15:12 2025 +0200

    Megaservice / orchestrator metric testing + fixes (opea-project#1348)

    Signed-off-by: Eero Tamminen <[email protected]>

commit 50d2e8c
Author: XinyaoWa <[email protected]>
Date:   Tue Mar 4 13:44:59 2025 +0800

    Add timeout param for DocSum and FaqGen to deal with long context (opea-project#1329)

    * Add timeout param for DocSum and FaqGen to deal with long context

    Make timeout param configurable, solve issue opea-project/GenAIExamples#1481

    Signed-off-by: Xinyao Wang <[email protected]>

    * [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci

    ---------

    Signed-off-by: Xinyao Wang <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
chyundunovDatamonsters pushed a commit to chyundunovDatamonsters/GenAIComps that referenced this pull request Apr 29, 2025
madison-evans pushed a commit to SAPD-Intel/GenAIComps that referenced this pull request May 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A2 ready to fix
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants