Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
D-W- committed Apr 24, 2024
1 parent ad204bf commit fbe9591
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/how-to-guides/develop-a-flex-flow/class-based-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Chat with flex flow in CLI is supported:
pf flow test --flow path/to/flow --inputs path/to/inputs --init path/to/init --ui
```

Check [here](../chat-with-a-flow) for more information.
Check [here](../chat-with-a-flow/index.md) for more information.

## Batch run without YAML

Expand Down Expand Up @@ -139,7 +139,7 @@ pf flow serve --source "./" --port 8088 --host localhost --init path/to/init.js

## Build & deploy

Build & deploy a flex flow is supported like [DAG flow](../deploy-a-flow/).
Build & deploy a flex flow is supported like [DAG flow](../deploy-a-flow/index.md).

## Connection support

Expand Down
10 changes: 5 additions & 5 deletions docs/how-to-guides/develop-a-flex-flow/function-based-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This is an experimental feature, and may change at any time. Learn [more](../faq.md#stable-vs-experimental).
:::

User can directly use a function(see [supported types](./index.md#supported-types) for typing support) as flex flow's entry.
User can directly use a function(see [supported types](./supported-types.md) for typing support) as flex flow's entry.

## Authoring

Expand All @@ -21,11 +21,11 @@ def my_flow(text: str) -> Reply:
pass
```

**Note** tracing is supported for flex flow. Check [here](../tracing/) for more information.
**Note** tracing is supported for flex flow. Check [here](../tracing/index.md) for more information.

## YAML support

Similar as [DAG flow](../deploy-a-flow/). YAML file is identifier for flex flow.
Similar as [DAG flow](../deploy-a-flow/index.md). YAML file is identifier for flex flow.
Flex flow will use `flow.flex.yaml` as it's identifier.
User can write the YAML file manually or save a function/callable entry to YAML file.
A flex flow YAML may look like this:
Expand Down Expand Up @@ -54,7 +54,7 @@ Chat with flex flow in CLI is supported:
pf flow test --flow path/to/flow --inputs path/to/inputs --ui
```

Check [here](../chat-with-a-flow) for more information.
Check [here](../chat-with-a-flow/index.md) for more information.

## Batch run without YAML

Expand Down Expand Up @@ -93,7 +93,7 @@ pf flow serve --source "./flow.flex.yaml" --port 8088 --host localhost

## Build & deploy

Build & deploy a flex flow is supported like [DAG flow](../deploy-a-flow/).
Build & deploy a flex flow is supported like [DAG flow](../deploy-a-flow/index.md).

## Next steps

Expand Down

0 comments on commit fbe9591

Please sign in to comment.