Add deterministic Python reference adapter
This commit is contained in:
parent
e6523c0c00
commit
8956c5c5f5
7 changed files with 1156 additions and 0 deletions
15
src/docforge/adapters/__init__.py
Normal file
15
src/docforge/adapters/__init__.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"""Repository-owned reference adapters built on the public adapter SDK."""
|
||||
|
||||
from .python import (
|
||||
PYTHON_ADAPTER_VERSION,
|
||||
PYTHON_EXTRACTOR_VERSION,
|
||||
PythonReferenceAdapter,
|
||||
PythonUnsupportedFact,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"PYTHON_ADAPTER_VERSION",
|
||||
"PYTHON_EXTRACTOR_VERSION",
|
||||
"PythonReferenceAdapter",
|
||||
"PythonUnsupportedFact",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue