Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update external package docs #849

Merged
merged 1 commit into from Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/external-packages.mdx
Expand Up @@ -99,8 +99,8 @@ So `super_cool_awesome_plugin/` is parallel to `stable-diffusion/`, but it's one
Here's how you can reference your packages inside `model.py`:

```python model.py
from super_cool_awesome_plugin.plugin1.script import cool_constant
from super_cool_awesome_plugin.plugin2.run import AwesomeRunner
from plugin1.script import cool_constant
from plugin2.run import AwesomeRunner

class Model:
def __init__(self, **kwargs):
Expand Down