Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ba1feb6
Revert "fix: Update milvus connect function to work with remote insta…
franciscojavierarceo May 29, 2025
86b6a20
test: Add Operator E2E tests for Feast Apply and Materialize function…
Srihari1192 May 29, 2025
1ed32d4
fix: Updating milvus connect function to work with remote instance (#…
Fiona-Waters May 30, 2025
2bb7248
feat: Add MCP support to feature server configuration
YassinNouh21 May 31, 2025
479eb7a
fix linter
YassinNouh21 May 31, 2025
edbb58f
add example
YassinNouh21 May 31, 2025
a8b17e1
test: add test cases for the mcp server
YassinNouh21 May 31, 2025
bc00dba
fix linter
YassinNouh21 May 31, 2025
e3a30d7
formatting
YassinNouh21 May 31, 2025
8a644b5
docs: update README for MCP setup instructions
YassinNouh21 May 31, 2025
08c4dd6
fix: update transformation service endpoint and refactor MCP integration
YassinNouh21 May 31, 2025
6c6f6ee
feat: add Model Context Protocol (MCP) support and update documentation
YassinNouh21 May 31, 2025
c3043c1
fix: update entity key serialization version and improve README clarity
YassinNouh21 May 31, 2025
8b26804
Merge branch 'master' into feat/mcp
YassinNouh21 May 31, 2025
1bec81f
fix: refactor MCP imports to use the correct module path
YassinNouh21 May 31, 2025
8aa31a7
feat: Add MCP server implementation files
YassinNouh21 Jun 1, 2025
9409e6a
test: MCP server unit tests and integration tests
YassinNouh21 Jun 1, 2025
426744b
fix formatting
YassinNouh21 Jun 1, 2025
c40809b
fix formatting
YassinNouh21 Jun 1, 2025
6135cde
adding compiled requirements
franciscojavierarceo Jun 4, 2025
b31cc87
Merge branch 'master' into feat/mcp
franciscojavierarceo Jun 4, 2025
b9a84f3
fix linter
franciscojavierarceo Jun 4, 2025
dc71713
reverting duckdb change
franciscojavierarceo Jun 4, 2025
ba6f51a
needed to do file source and duckdb
franciscojavierarceo Jun 4, 2025
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
Prev Previous commit
Next Next commit
fix linter
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
  • Loading branch information
franciscojavierarceo committed Jun 4, 2025
commit b9a84f3098a955b62c1d174abd4738e441a5d6f5
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/offline_stores/duckdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _write_data_source(
prev_schema = (
DeltaTable(file_options.uri, storage_options=storage_options)
.schema()
.to_pyarrow()
.to_arrow()
)
table = table.cast(ibis.Schema.from_pyarrow(prev_schema))
write_mode = "append"
Expand Down
Loading