Review #158 [6o4gq] #2
Annotations
2 errors
|
pullfrog
action failed: Azure OpenAI selected but required configuration is missing: AZURE_DEPLOYMENT, AZURE_CONTEXT, AZURE_MAX_OUTPUT.
only the API key is sensitive — add it as a secret at https://github.com/dmno-dev/bumpy/settings/secrets/actions. the rest is plain workflow `env:`:
AZURE_RESOURCE_NAME: <name>
AZURE_API_KEY: ${{ secrets.AZURE_API_KEY }}
AZURE_DEPLOYMENT: <deployment-name>
AZURE_CONTEXT: "400000"
AZURE_MAX_OUTPUT: "128000"
AZURE_RESOURCE_NAME is the `<name>` in your endpoint https://<name>.openai.azure.com.
AZURE_DEPLOYMENT is the name of the deployment, which is not necessarily the name of
the model it serves — Azure routes on the deployment name.
set the last two to the real limits of whichever model your deployment serves. Pullfrog can't
discover them — a deployment name carries no catalog metadata — and without them completions
are capped at 32000 tokens (rejected outright by models with a smaller cap) and auto-compaction
is disabled, so long runs grow until Azure refuses them.
for full setup instructions, see https://docs.pullfrog.com/azure
|
|
pullfrog
Azure OpenAI selected but required configuration is missing: AZURE_DEPLOYMENT, AZURE_CONTEXT, AZURE_MAX_OUTPUT.
only the API key is sensitive — add it as a secret at https://github.com/dmno-dev/bumpy/settings/secrets/actions. the rest is plain workflow `env:`:
AZURE_RESOURCE_NAME: <name>
AZURE_API_KEY: ${{ secrets.AZURE_API_KEY }}
AZURE_DEPLOYMENT: <deployment-name>
AZURE_CONTEXT: "400000"
AZURE_MAX_OUTPUT: "128000"
AZURE_RESOURCE_NAME is the `<name>` in your endpoint https://<name>.openai.azure.com.
AZURE_DEPLOYMENT is the name of the deployment, which is not necessarily the name of
the model it serves — Azure routes on the deployment name.
set the last two to the real limits of whichever model your deployment serves. Pullfrog can't
discover them — a deployment name carries no catalog metadata — and without them completions
are capped at 32000 tokens (rejected outright by models with a smaller cap) and auto-compaction
is disabled, so long runs grow until Azure refuses them.
for full setup instructions, see https://docs.pullfrog.com/azure
|