> ## Documentation Index
> Fetch the complete documentation index at: https://docs.notte.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# fork

> Fork a shared workflow into your own private workflow

```python theme={null}
function = notte.Function("<user-shared-workflow-id>")
forked_function = function.fork()
forked_function.run()
```

The forked workflow is only accessible to you and you can update it as you want

## Returns

[`RemoteWorkflow`](/sdk-reference/misc/remoteworkflow.md)
