Merge branch 'main' into sgoedecke/make-actual-runs-optional

This commit is contained in:
Sean Goedecke
2025-07-16 07:31:18 +10:00
committed by GitHub
3 changed files with 1034 additions and 359 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ the action:
| `prompt-file` | Path to a file containing the prompt. If both `prompt` and `prompt-file` are provided, `prompt-file` takes precedence | `""` | | `prompt-file` | Path to a file containing the prompt. If both `prompt` and `prompt-file` are provided, `prompt-file` takes precedence | `""` |
| `system-prompt` | The system prompt to send to the model | `"You are a helpful assistant"` | | `system-prompt` | The system prompt to send to the model | `"You are a helpful assistant"` |
| `system-prompt-file` | Path to a file containing the system prompt. If both `system-prompt` and `system-prompt-file` are provided, `system-prompt-file` takes precedence | `""` | | `system-prompt-file` | Path to a file containing the system prompt. If both `system-prompt` and `system-prompt-file` are provided, `system-prompt-file` takes precedence | `""` |
| `model` | The model to use for inference. Must be available in the [GitHub Models](https://github.com/marketplace?type=models) catalog | `gpt-4o` | | `model` | The model to use for inference. Must be available in the [GitHub Models](https://github.com/marketplace?type=models) catalog | `openai/gpt-4.1` |
| `endpoint` | The endpoint to use for inference. If you're running this as part of an org, you should probably use the org-specific Models endpoint | `https://models.github.ai/inference` | | `endpoint` | The endpoint to use for inference. If you're running this as part of an org, you should probably use the org-specific Models endpoint | `https://models.github.ai/inference` |
| `max-tokens` | The max number of tokens to generate | 200 | | `max-tokens` | The max number of tokens to generate | 200 |
+1022 -347
View File
File diff suppressed because it is too large Load Diff
+11 -11
View File
@@ -43,28 +43,28 @@
"@azure-rest/ai-inference": "latest", "@azure-rest/ai-inference": "latest",
"@azure/core-auth": "latest", "@azure/core-auth": "latest",
"@azure/core-sse": "latest", "@azure/core-sse": "latest",
"@eslint/compat": "^1.2.9", "@eslint/compat": "^1.3.0",
"@github/local-action": "^3.2.1", "@github/local-action": "^3.2.1",
"@jest/globals": "^29.7.0", "@jest/globals": "^30.0.2",
"@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-commonjs": "^28.0.5",
"@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2", "@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14", "@types/jest": "^29.5.14",
"@types/node": "^22.15.21", "@types/node": "^22.15.31",
"@typescript-eslint/eslint-plugin": "^8.32.1", "@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.32.1", "@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0", "eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5", "eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.0", "eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.31.0", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0", "eslint-plugin-jest": "^28.14.0",
"eslint-plugin-prettier": "^5.4.0", "eslint-plugin-prettier": "^5.4.1",
"jest": "^29.7.0", "jest": "^29.7.0",
"make-coverage-badge": "^1.2.0", "make-coverage-badge": "^1.2.0",
"prettier": "^3.5.3", "prettier": "^3.5.3",
"prettier-eslint": "^16.4.2", "prettier-eslint": "^16.4.2",
"rollup": "^4.41.1", "rollup": "^4.43.0",
"ts-jest": "^29.3.4", "ts-jest": "^29.4.0",
"ts-jest-resolver": "^2.0.1", "ts-jest-resolver": "^2.0.1",
"typescript": "^5.8.3" "typescript": "^5.8.3"
}, },