Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
@morph.func
@morph.func( name: str | None = None, description: str | None = None, ) def func_name(context): # write your code here
@morph.func( name="example_python_cell", description="Example Python cell", ) def get_data_from_database(context): # write your code here return pd.DataFrame({ "name": ["John", "Doe"], "age": [20, 30], })