| [ Web Proxy ] |
| Viewing: https://feast.dev/ | [Back] [Original] |
Feast is an open source feature store that delivers structured data to AI and LLM applications at high scale during training and inference
Get StartedServe personalized product and content recommendations with real-time user interaction features
Detect fraudulent transactions using historical patterns and real-time behavioral features
Calculate risk scores for financial services using consistent features across training and inference
Create dynamic customer segments using consistent feature definitions across teams
from feast import FeatureStore
# Initialize the feature store
store = FeatureStore(repo_path="feature_repo")
# Get features for training
training_df = store.get_historical_features(
entity_df=training_entities,
features=[
"customer_stats:daily_transactions",
"customer_stats:lifetime_value",
"product_features:price"
]
).to_df()
# Get online features for inference
features = store.get_online_features(
features=[
"customer_stats:daily_transactions",
"customer_stats:lifetime_value",
"product_features:price"
],
entity_rows=[{"customer_id": "C123", "product_id": "P456"}]
).to_dict()
# Retrieve your documents using vector similarity search for RAG
features = store.retrieve_online_documents(
features=[
"corpus:document_id",
"corpus:chunk_id",
"corpus:chunk_text",
"corpus:chunk_embedding",
],
query="What is the biggest city in the USA?"
).to_dict() Feast now reads features from any Iceberg catalog REST, SQL, Hive, Glue, DynamoDB. Connect to Unity Catalog, Apache Polaris, Nessie, or your own PyIceberg catalog. Full support for get_historical_features, materialize, and online serving.
Keep conversation features in Feast, retrieve them for training, then stream into your trainer with Ray.
Feast now exposes an OpenAI-compatible vector store search endpoint. Send a plain text query, get results back in the standard OpenAI format. No client-side embeddings required.
Become part of our developer community & get support from the Feast developers
Join Community| Web Proxy Viewer | New URL | Original Page |