Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
feat: Added docling and pytorch as add on
Signed-off-by: ntkathole <nikhilkathole2683@gmail.com>
  • Loading branch information
ntkathole committed Feb 27, 2025
commit 7778335fe8fc52e5fe4248bc7623500857fc7d34
2 changes: 1 addition & 1 deletion docs/getting-started/architecture/push-vs-pull-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ Implicit in the Push model are decisions about _how_ and _when_ to push feature

From a developer's perspective, there are three ways to push feature values to the online store with different tradeoffs.

They are discussed further in the [Write Patterns](getting-started/architecture/write-patterns.md) section.
They are discussed further in the [Write Patterns](write-patterns.md) section.
2 changes: 1 addition & 1 deletion docs/getting-started/architecture/write-patterns.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Writing Data to Feast

Feast uses a [Push Model](getting-started/architecture/push-vs-pull-model.md) to push features to the online store.
Feast uses a [Push Model](push-vs-pull-model.md) to push features to the online store.

This has two important consequences: (1) communication patterns between the Data Producer (i.e., the client) and Feast (i.e,. the server) and (2) feature computation and
_feature value_ write patterns to Feast's online store.
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ azure = [
cassandra = ["cassandra-driver>=3.24.0,<4"]
couchbase = ["couchbase==4.3.2"]
delta = ["deltalake"]
docling = ["docling>=2.23.0"]
duckdb = ["ibis-framework[duckdb]>=9.0.0,<10"]
elasticsearch = ["elasticsearch>=8.13.0"]
faiss = ["faiss-cpu>=1.7.0,<2"]
Expand Down Expand Up @@ -94,6 +95,7 @@ opentelemetry = ["prometheus_client", "psutil"]
spark = ["pyspark>=3.0.0,<4"]
trino = ["trino>=0.305.0,<0.400.0", "regex"]
postgres = ["psycopg[binary,pool]>=3.0.0,<4"]
pytorch = ["torch>=2.2.2", "torchvision>=0.17.2"]
qdrant = ["qdrant-client>=1.12.0"]
redis = [
"redis>=4.2.2,<5",
Expand Down Expand Up @@ -148,8 +150,9 @@ ci = [
"types-setuptools",
"types-tabulate",
"virtualenv<20.24.2",
"feast[aws, azure, cassandra, couchbase, delta, duckdb, elasticsearch, faiss, gcp, ge, go, grpcio, hazelcast, hbase, ibis, ikv, k8s, milvus, mssql, mysql, opentelemetry, spark, trino, postgres, qdrant, redis, singlestore, snowflake, sqlite_vec]"
"feast[aws, azure, cassandra, couchbase, delta, docling, duckdb, elasticsearch, faiss, gcp, ge, go, grpcio, hazelcast, hbase, ibis, ikv, k8s, milvus, mssql, mysql, opentelemetry, spark, trino, postgres, pytorch, qdrant, redis, singlestore, snowflake, sqlite_vec]"
]
nlp = ["feast[docling, milvus, pytorch]"]
dev = ["feast[ci]"]
docs = ["feast[ci]"]

Expand Down
Loading