-
Notifications
You must be signed in to change notification settings - Fork 940
55 lines (52 loc) · 1.47 KB
/
llm.yml
File metadata and controls
55 lines (52 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: LLM Agent
on:
workflow_dispatch:
inputs:
base-sha:
required: false
type: string
head-sha:
required: false
type: string
run-id:
required: false
type: string
prompt:
required: false
type: string
default: ""
prompt-repository:
required: false
type: string
default: ""
model-small:
required: false
type: string
default: "@vertexai-global/anthropic.claude-haiku-4-5@20251001"
model-medium:
required: false
type: string
default: "@vertexai-global/anthropic.claude-sonnet-4-5@20250929"
model-large:
required: false
type: string
default: "@vertexai-global/anthropic.claude-opus-4-5@20251101"
jobs:
llm:
uses: analogdevicesinc/linux/.github/workflows/llm.yml@ci
permissions:
contents: read
checks: read
secrets:
ANTHROPIC_CUSTOM_HEADERS: ${{ secrets.ANTHROPIC_CUSTOM_HEADERS }}
ANTHROPIC_BASE_URL: ${{ secrets.ANTHROPIC_BASE_URL }}
ANTHROPIC_AUTH_TOKEN: ${{ secrets.ANTHROPIC_AUTH_TOKEN }}
with:
base-sha: ${{ inputs.base-sha }}
head-sha: ${{ inputs.head-sha }}
run-id: ${{ inputs.run-id }}
prompt: ${{ inputs.prompt }}
prompt-repository: ${{ inputs.prompt-repository }}
model-small: ${{ inputs.model-small }}
model-medium: ${{ inputs.model-medium }}
model-large: ${{ inputs.model-large }}