Currently, the service functions always has context in the kwargs (e.g.
|
def move_by_distance_schema(self, config: MoveByDistanceInput, context=None): |
) but the require_context is set to False. This cause the extra unnecessary
context in the service schema:
https://hypha.aicell.io/agent-lens/services/squid-control-reef
I'd suggest to set require_context=True always.
Currently, the service functions always has
contextin the kwargs (e.g.squid-control/squid_control/start_hypha_service.py
Line 1683 in 2bdaff4
contextin the service schema: https://hypha.aicell.io/agent-lens/services/squid-control-reefI'd suggest to set
require_context=Truealways.