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
35 lines
843 B
YAML
35 lines
843 B
YAML
$schema: https://azuremlschemas.azureedge.net/promptflow/latest/Flow.schema.json
|
|
inputs:
|
|
chat_history:
|
|
type: list
|
|
default: []
|
|
question:
|
|
type: string
|
|
is_chat_input: true
|
|
default: What is ChatGPT?
|
|
outputs:
|
|
answer:
|
|
type: string
|
|
reference: ${chat.output}
|
|
is_chat_output: true
|
|
nodes:
|
|
- inputs:
|
|
# This is to easily switch between openai and azure openai.
|
|
# deployment_name is required by azure openai, model is required by openai.
|
|
deployment_name: gpt-35-turbo
|
|
model: gpt-3.5-turbo
|
|
max_tokens: "256"
|
|
temperature: "0.7"
|
|
chat_history: ${inputs.chat_history}
|
|
question: ${inputs.question}
|
|
name: chat
|
|
type: llm
|
|
source:
|
|
type: code
|
|
path: chat.jinja2
|
|
api: chat
|
|
connection: open_ai_connection
|
|
node_variants: {}
|
|
environment:
|
|
python_requirements_txt: requirements.txt
|