mirror of
https://github.com/microsoft/graphrag.git
synced 2025-07-23 17:01:49 +00:00
32 lines
638 B
Python
32 lines
638 B
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
mock_verbs = {
|
|
"mock_verb": lambda x: x,
|
|
"mock_verb_2": lambda x: x,
|
|
}
|
|
|
|
mock_workflows = {
|
|
"mock_workflow": lambda _x: [
|
|
{
|
|
"verb": "mock_verb",
|
|
"args": {
|
|
"column": "test",
|
|
},
|
|
}
|
|
],
|
|
"mock_workflow_2": lambda _x: [
|
|
{
|
|
"verb": "mock_verb",
|
|
"args": {
|
|
"column": "test",
|
|
},
|
|
},
|
|
{
|
|
"verb": "mock_verb_2",
|
|
"args": {
|
|
"column": "test",
|
|
},
|
|
},
|
|
],
|
|
}
|