You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Updated genaiscript dependency from 1.142.12 to 2.3.10 in package.json.
- Added "private" and "version" fields in package.json.
- Modified the "upgrade" script to include a fix step after updating dependencies.
- Replaced the "lint" step with "typecheck" in release.sh for better build validation.
- Added a shebang and error handling in release.sh.
- Created a new Dockerfile for devcontainer setup, ensuring it stays in sync with the main Dockerfile.
- Added .nvmrc file to specify Node.js version as lts/*.
Copy file name to clipboardExpand all lines: README.md
+39-17Lines changed: 39 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,30 @@ The default behavior is to summarize and extract task items but this can be cust
5
5
6
6
## Inputs
7
7
8
-
-`github_token`: GitHub token with `models: read` permission at least. **(required)**
9
-
-`instructions`: Custom prompt to use for the LLM model. If not provided, a default prompt will be used.
10
-
-`github_issue`: The issue number to analyze. Typically this variable is inferred from the event context.
11
-
-`debug`: Enable debug logging.
8
+
|name|description|required|default|
9
+
|----|-----------|--------|-------|
10
+
|`instructions`| Custom prompting instructions for each video. | false | Analyze the video and provide a summary of its content. Extract list of followup subissues if any. The transcript is your primary source of text information, ignore text in images. |
|`model_alias`| A YAML-like list of model aliases and model id: `translation: github:openai/gpt-4o`| false ||
13
+
|`openai_api_key`| OpenAI API key | false ||
14
+
|`openai_api_base`| OpenAI API base URL | false ||
15
+
|`azure_openai_api_endpoint`| Azure OpenAI endpoint. In the Azure Portal, open your Azure OpenAI resource, Keys and Endpoints, copy Endpoint. | false ||
16
+
|`azure_openai_api_key`| Azure OpenAI API key. **You do NOT need this if you are using Microsoft Entra ID. | false ||
17
+
|`azure_openai_subscription_id`| Azure OpenAI subscription ID to list available deployments (Microsoft Entra only). | false ||
18
+
|`azure_openai_api_version`| Azure OpenAI API version. | false ||
19
+
|`azure_openai_api_credentials`| Azure OpenAI API credentials type. Leave as 'default' unless you have a special Azure setup. | false ||
20
+
|`azure_ai_inference_api_key`| Azure AI Inference key | false ||
|`azure_ai_inference_api_version`| Azure Serverless OpenAI API version | false ||
23
+
|`azure_ai_inference_api_credentials`| Azure Serverless OpenAI API credentials type | false ||
24
+
|`github_token`| GitHub token with `models: read` permission at least (https://microsoft.github.io/genaiscript/reference/github-actions/#github-models-permissions).| false ||
0 commit comments