This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplify wyvern import - move top priority import to wyvern/__init__.…
…py (#30) * simplify wyvern import - move top priority import to wyvern/__init__.py * WyvernService * ModelComponent, RankingPipeline RankingResponse * a lot more for starter template * version v0.0.17 * add .env file for wyvern init
- Loading branch information
1 parent
3d3820c
commit 3cb31a3
Showing
4 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,59 @@ | ||
# -*- coding: utf-8 -*- | ||
from wyvern.components.features.realtime_features_component import ( | ||
RealtimeFeatureComponent, | ||
) | ||
from wyvern.components.models.model_component import ( | ||
ModelComponent, | ||
ModelInput, | ||
ModelOutput, | ||
) | ||
from wyvern.components.pipeline_component import PipelineComponent | ||
from wyvern.components.ranking_pipeline import ( | ||
RankingPipeline, | ||
RankingRequest, | ||
RankingResponse, | ||
) | ||
from wyvern.entities.candidate_entities import CandidateSetEntity | ||
from wyvern.entities.feature_entities import FeatureData, FeatureMap | ||
from wyvern.entities.identifier import CompositeIdentifier, Identifier, IdentifierType | ||
from wyvern.entities.identifier_entities import ( | ||
ProductEntity, | ||
QueryEntity, | ||
UserEntity, | ||
WyvernDataModel, | ||
WyvernEntity, | ||
) | ||
from wyvern.feature_store.feature_server import generate_wyvern_store_app | ||
from wyvern.service import WyvernService | ||
from wyvern.wyvern_logging import setup_logging | ||
from wyvern.wyvern_tracing import setup_tracing | ||
from wyvern.wyvern_typing import WyvernFeature | ||
|
||
setup_logging() | ||
setup_tracing() | ||
|
||
|
||
__all__ = [ | ||
"generate_wyvern_store_app", | ||
"CandidateSetEntity", | ||
"CompositeIdentifier", | ||
"FeatureData", | ||
"FeatureMap", | ||
"Identifier", | ||
"IdentifierType", | ||
"ModelComponent", | ||
"ModelInput", | ||
"ModelOutput", | ||
"PipelineComponent", | ||
"ProductEntity", | ||
"QueryEntity", | ||
"RankingPipeline", | ||
"RankingResponse", | ||
"RankingRequest", | ||
"RealtimeFeatureComponent", | ||
"UserEntity", | ||
"WyvernDataModel", | ||
"WyvernEntity", | ||
"WyvernFeature", | ||
"WyvernService", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters