You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: omni-reader/README.md
+17-6Lines changed: 17 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,18 +125,29 @@ For interactive use, the project includes a Streamlit app:
125
125
streamlit run app.py
126
126
```
127
127
128
-
### Remote Artifact Storage or Running Remotely
128
+
### ### Remote Artifact Storage and Execution
129
129
130
-
For remote artifact storage or running remotely, install the ZenML integrations for your cloud provider.
130
+
This project supports storing artifacts remotely and executing pipelines on cloud infrastructure. Follow these steps to configure your environment for remote operation:
131
131
132
-
For example, for AWS, install the AWS integration:
132
+
#### Setting Up Cloud Provider Integrations
133
+
134
+
Install the appropriate ZenML integrations for your preferred cloud provider:
133
135
134
136
```bash
135
-
zenml integration install aws -y
136
-
zenml integration install s3 -y
137
+
# For AWS
138
+
zenml integration install aws s3 -y
139
+
140
+
# For Azure
141
+
zenml integration install azure azure-blob -y
142
+
143
+
# For Google Cloud
144
+
zenml integration install gcp gcs -y
137
145
```
138
146
139
-
And ensure your stack has a remote
147
+
For detailed configuration options and other components, refer to the ZenML documentation:
0 commit comments