Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wangchao1230 committed Apr 16, 2024
1 parent 420dcef commit 726016b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/concepts/concept-flows.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ While how LLMs work may be elusive to many developers, how LLM apps work is not

## Flex flows

{bdg-success-line}`New in version 1.9.0`

You can create LLM apps using a Python function or class as the entry point, which encapsulating your app logic. You can directly test or run these with pure code experience. Or you can define a `flow.flex.yaml` that points to these entries, which enables testing, running, or viewing traces via the [Promptflow VS Code Extension](https://marketplace.visualstudio.com/items?itemName=prompt-flow.prompt-flow).

Our [examples](https://github.com/microsoft/promptflow/tree/main/examples/flex-flows) should also give you an idea how to write `flex flows`. Flex flow feature is available since promptflow version 1.9.0.
Our [examples](https://github.com/microsoft/promptflow/tree/main/examples/flex-flows) should also give you an idea how to write `flex flows`.

## DAG flow

Expand Down
2 changes: 2 additions & 0 deletions docs/how-to-guides/tracing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
This is an experimental feature, and may change at any time. Learn [more](../faq.md#stable-vs-experimental).
:::

{bdg-success-line}`New in version 1.9.0`

Prompt flow provides the trace feature to capture and visualize the internal execution details for all flows.

For `DAG flow`, user can track and visualize node level inputs/outputs of flow execution, it provides critical insights for developer to understand the internal details of execution.
Expand Down
2 changes: 1 addition & 1 deletion examples/flex-flows/chat-basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Or use CLI to create connection:
```bash
# Override keys with --set to avoid yaml file changes
pf connection create --file ../../../connections/azure_openai.yml --set api_key=<your_api_key> api_base=<your_api_base> --name open_ai_connection
pf connection create --file ../../connections/azure_openai.yml --set api_key=<your_api_key> api_base=<your_api_base> --name open_ai_connection
```

Note in [flow.flex.yaml](flow.flex.yaml) we are using connection named `open_ai_connection`.
Expand Down
2 changes: 1 addition & 1 deletion examples/flex-flows/eval-checklist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Or use CLI to create connection:

```bash
# Override keys with --set to avoid yaml file changes
pf connection create --file ../../../connections/azure_openai.yml --set api_key=<your_api_key> api_base=<your_api_base> --name open_ai_connection
pf connection create --file ../../connections/azure_openai.yml --set api_key=<your_api_key> api_base=<your_api_base> --name open_ai_connection
```

Note in [flow.flex.yaml](flow.flex.yaml) we are using connection named `open_ai_connection`.
Expand Down

0 comments on commit 726016b

Please sign in to comment.