Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions THIRD_PARTY_NOTICES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ This file is generated by `scripts/third_party_governance.py`. Do not edit it
by hand. Each registered source is pinned and distributed with its license
text.

## onyx

- Upstream: https://github.com/onyx-dot-app/onyx.git
- Commit: `2fb3dd10493b3883870fa8adced5b1a0e114feff`
- License: MIT (`third_party/onyx/LICENSE.upstream`)
- Reuse mode: `copy-patch`
- Approval: https://github.com/stone16/context-engine/issues/126
- Copied paths:
- `backend/onyx/connectors/interfaces.py`
- `backend/onyx/connectors/connector_runner.py`
- `backend/onyx/connectors/models.py`
- `backend/onyx/connectors/registry.py`

## ragflow

- Upstream: https://github.com/infiniflow/ragflow.git
Expand Down
41 changes: 41 additions & 0 deletions THIRD_PARTY_SBOM.cyclonedx.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,47 @@
{
"bomFormat": "CycloneDX",
"components": [
{
"bom-ref": "context-engine:third-party:onyx",
"externalReferences": [
{
"type": "vcs",
"url": "https://github.com/onyx-dot-app/onyx.git#2fb3dd10493b3883870fa8adced5b1a0e114feff"
}
],
"licenses": [
{
"license": {
"id": "MIT"
}
}
],
"name": "onyx",
"properties": [
{
"name": "context-engine:scope",
"value": "third_party/onyx"
},
{
"name": "context-engine:file-sha256",
"value": "third_party/onyx/connectors/interfaces.py=6a9f3f753972d2036c9fe90d4a394b4cd22b325e92e00a01a550d7f8cc94f87f"
},
{
"name": "context-engine:file-sha256",
"value": "third_party/onyx/connectors/connector_runner.py=b650097cb44b1f56a07f80befa7ca6123771ab7244db77bb5637305c92b834de"
},
{
"name": "context-engine:file-sha256",
"value": "third_party/onyx/connectors/models.py=e3b95634e689457be8dbb99a253c26924143a0d59ac5bd5fb7629b57c3f06454"
},
{
"name": "context-engine:file-sha256",
"value": "third_party/onyx/connectors/registry.py=b134c07f20959ed44802c1fc753f9c0a8e5a9388134f4bc57b4bcc5ba4166618"
}
],
"type": "library",
"version": "2fb3dd10493b3883870fa8adced5b1a0e114feff"
},
{
"bom-ref": "context-engine:third-party:ragflow",
"externalReferences": [
Expand Down
15 changes: 15 additions & 0 deletions adapters/connectors/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""ContextEngine-owned connector adapters."""

from adapters.connectors.file import (
FileConnectorAdapter,
FileConnectorProcessAdapter,
FileRootVaultSource,
PermissionObservationFailed,
)

__all__ = [
"FileConnectorAdapter",
"FileConnectorProcessAdapter",
"FileRootVaultSource",
"PermissionObservationFailed",
]
Loading
Loading