Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/cloud/azureai/use-flow-in-azure-ml-pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ nodes:
path: hello.py
inputs:
prompt: ${hello_prompt.output}
deployment_name: text-davinci-003
deployment_name: gpt-35-turbo
max_tokens: "120"
```

Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
data: ${{parent.inputs.data}}
url: "${data.url}"
connections.summarize_text_content.connection: azure_open_ai_connection
connections.summarize_text_content.deployment_name: text-davinci-003
connections.summarize_text_content.deployment_name: gpt-35-turbo
environment_variables.AZURE_OPENAI_API_KEY: ${my_connection.api_key}
environment_variables.AZURE_OPENAI_API_BASE: ${my_connection.api_base}
...
Expand Down Expand Up @@ -271,7 +271,7 @@ def pipeline_func_with_flow(data):
connections={
"summarize_text_content": {
"connection": "azure_open_ai_connection",
"deployment_name": "text-davinci-003",
"deployment_name": "gpt-35-turbo",
},
},
environment_variables={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ by `${prepare_examples.output}` and `${summarize_text_content.output}`.
type: code
path: classify_with_llm.jinja2
inputs:
deployment_name: text-davinci-003
deployment_name: gpt-35-turbo
suffix: ""
max_tokens: 128
temperature: 0.2
Expand Down Expand Up @@ -218,7 +218,7 @@ You can link `examples` to the `evidence` output of upstream `covert_to_dict` no
type: code
path: classify_with_llm.jinja2
inputs:
deployment_name: text-davinci-003
deployment_name: gpt-35-turbo
suffix: ""
max_tokens: 128
temperature: 0.2
Expand Down
4 changes: 2 additions & 2 deletions docs/how-to-guides/tune-prompts-with-variants.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ node_variants:
type: code
path: summarize_text_content.jinja2
inputs:
deployment_name: text-davinci-003
deployment_name: gpt-35-turbo
max_tokens: '128'
temperature: '0.2'
text: ${fetch_text_content_from_url.output}
Expand All @@ -47,7 +47,7 @@ node_variants:
type: code
path: summarize_text_content__variant_1.jinja2
inputs:
deployment_name: text-davinci-003
deployment_name: gpt-35-turbo
max_tokens: '256'
temperature: '0.3'
text: ${fetch_text_content_from_url.output}
Expand Down
Loading