generated from coulomb/repo-seed
Separated open-cmis-tck and guide-board repositories
This commit is contained in:
16
src/guide_board/sdk.py
Normal file
16
src/guide_board/sdk.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""Public helper types for extension runners.
|
||||
|
||||
Extension Python runners are called with one dictionary context and should return
|
||||
one dictionary shaped like `RunnerResult`.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any, TypedDict
|
||||
|
||||
|
||||
class RunnerResult(TypedDict, total=False):
|
||||
result: str
|
||||
observations: list[str]
|
||||
facts: dict[str, Any]
|
||||
artifact_refs: list[str]
|
||||
Reference in New Issue
Block a user