Files
microsoft--graphrag/tests/verbs/test_generate_text_embeddings.py
wehub-resource-sync 6b7e6b44f1
gh-pages / build (push) Waiting to run
Python Publish (pypi) / Upload release to PyPI (push) Waiting to run
Spellcheck / spellcheck (push) Waiting to run
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:37:31 +08:00

54 lines
1.5 KiB
Python

# Copyright (c) 2024 Microsoft Corporation.
# Licensed under the MIT License
from graphrag.config.embeddings import (
all_embeddings,
)
from graphrag.index.workflows.generate_text_embeddings import (
run_workflow,
)
from tests.unit.config.utils import get_default_graphrag_config
from .util import (
create_test_context,
)
async def test_generate_text_embeddings():
context = await create_test_context(
storage=[
"documents",
"relationships",
"text_units",
"entities",
"community_reports",
]
)
config = get_default_graphrag_config()
llm_settings = config.get_embedding_model_config(
config.embed_text.embedding_model_id
)
llm_settings.type = "mock"
llm_settings.mock_responses = [1.0] * 3072
config.embed_text.names = list(all_embeddings)
config.snapshots.embeddings = True
await run_workflow(config, context)
parquet_files = context.output_storage.keys()
for field in all_embeddings:
assert f"embeddings.{field}.parquet" in parquet_files
# entity description should always be here, let's assert its format
entity_description_embeddings = await context.output_table_provider.read_dataframe(
"embeddings.entity_description"
)
assert len(entity_description_embeddings.columns) == 2
assert "id" in entity_description_embeddings.columns
assert "embedding" in entity_description_embeddings.columns