Wyvern Feature Serving currently integrates with the open source feature store, feastIf you have already built your feast features, you can migrate over to your wyvern repository or create new feast code there:
Migrate/create your feast code, for example in my-project/feature-store-python/features.
Add the wyvern feature store code:
feature-store-python/features/main.py
Copy
Ask AI
from wyvern.feature_store.feature_server import generate_wyvern_store_app# This import is required currently as Wyvern Feature store needs the real-time feature registry infofrom pipelines.main import app as wyvern_app # noqa: F401app = generate_wyvern_store_app(path=".")
Run the wyvern feature service:
Copy
Ask AI
wyvern run --path feature-store-python.features.main:app