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
All connections and flow inputs will be exposed as input parameters of the component. Default value can be provided in flow/run definition; they can also be set/overwrite on job submission:
Copy file name to clipboardExpand all lines: docs/reference/pf-command-reference.md
+26-1
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,9 @@ Manage promptflow flow flows.
20
20
| --- | --- |
21
21
|[pf flow init](#pf-flow-init)| Initialize a prompt flow directory. |
22
22
|[pf flow test](#pf-flow-test)| Test the prompt flow or flow node. |
23
+
|[pf flow validate](#pf-flow-validate)| Validate a flow and generate `flow.tools.json` for it. |
23
24
|[pf flow build](#pf-flow-build)| Build a flow for further sharing or deployment. |
24
-
|[pf flow serve](#pf-flow-serve)|Serving a flow as an endpoint. |
25
+
|[pf flow serve](#pf-flow-serve)|Serve a flow as an endpoint. |
25
26
26
27
### pf flow init
27
28
@@ -167,6 +168,30 @@ Start a interactive chat session for chat flow.
167
168
168
169
Displays the output for each step in the chat flow.
169
170
171
+
### pf flow validate
172
+
173
+
Validate the prompt flow and generate a `flow.tools.json` under `.promptflow`. This file is required when using flow as a component in a Azure ML pipeline.
0 commit comments