File size: 444 Bytes
97e363b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# ~~~ Specify the dependencies ~~~
dependencies = [
{"url": "aiflows/ChatFlowModule", "revision": "main"}
]
# Revision can correspond toa branch, commit hash or a absolute path to a local directory (ideal for development)
from aiflows import flow_verse
flow_verse.sync_dependencies(dependencies)
# ~~~ Import of your flow class (if you have any) ~~~
# from .NAMEOFYOURFLOW import NAMEOFYOURFLOWCLASS
from .SamplerFlow import SamplerFlow
|