> ## Documentation Index
> Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# fork

> Fork a shared function into your own private function

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

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

## Returns

[`NotteFunction`](/sdk-reference/misc/nottefunction.md)
