e768098d0e
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
27 lines
644 B
YAML
27 lines
644 B
YAML
$schema: https://azuremlschemas.azureedge.net/promptflow/latest/Flow.schema.json
|
|
inputs:
|
|
website_name:
|
|
type: string
|
|
default: Microsoft
|
|
user_name:
|
|
type: string
|
|
default: ""
|
|
outputs:
|
|
output:
|
|
type: string
|
|
reference: ${my_custom_llm_tool.output}
|
|
nodes:
|
|
- name: my_custom_llm_tool
|
|
type: custom_llm
|
|
source:
|
|
type: package_with_prompt
|
|
tool: my_tool_package.tools.tool_with_custom_llm_type.my_tool
|
|
path: prompt_template.jinja2
|
|
inputs:
|
|
connection: basic_custom_connection
|
|
api: ''
|
|
website_name: ${inputs.website_name}
|
|
user_name: ${inputs.user_name}
|
|
deployment_name: ''
|
|
temperature: 1
|