Remove TaskConfig and client from root exports#2580
Conversation
|
This is not a breaking change as TaskConfig has not been released and |
WalkthroughThe changes modify the public API of the fastmcp package by removing TaskConfig and client from the top-level fastmcp module's Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (2)
💤 Files with no reviewable changes (1)
🧰 Additional context used📓 Path-based instructions (1)docs/**/*.mdx📄 CodeRabbit inference engine (docs/.cursor/rules/mintlify.mdc)
Files:
🧠 Learnings (1)📓 Common learnings⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
🔇 Additional comments (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Removes
TaskConfigandclientfrom the root__all__exports to encourage more explicit imports.TaskConfigshould now be imported from its public API:The
clientmodule remains accessible via explicit import (from fastmcp import client) but is no longer included infrom fastmcp import *exports.All documentation and tests have been updated to use the correct import paths.