e768098d0e
Flake8 Lint / flake8 (push) Waiting to run
Spell check CI / Spell_Check (push) Waiting to run
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
17 lines
553 B
YAML
17 lines
553 B
YAML
$schema: https://azuremlschemas.azureedge.net/promptflow/latest/Run.schema.json
|
|
#name: chat_with_pdf_default_20230820_162219_559000
|
|
flow: .
|
|
data: ./data/bert-paper-qna.jsonl
|
|
#run: <Uncomment to select a run input>
|
|
column_mapping:
|
|
chat_history: ${data.chat_history}
|
|
pdf_url: ${data.pdf_url}
|
|
question: ${data.question}
|
|
config:
|
|
EMBEDDING_MODEL_DEPLOYMENT_NAME: text-embedding-ada-002
|
|
CHAT_MODEL_DEPLOYMENT_NAME: gpt-4
|
|
PROMPT_TOKEN_LIMIT: 3000
|
|
MAX_COMPLETION_TOKENS: 1024
|
|
VERBOSE: true
|
|
CHUNK_SIZE: 1024
|
|
CHUNK_OVERLAP: 64 |