File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 11
11
env :
12
12
OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
13
13
ANTHROPIC_API_KEY : ${{ secrets.ANTHROPIC_API_KEY }}
14
+ DEEPSEEK_API_KEY : ${{ secrets.DEEPSEEK_API_KEY }}
15
+ OPENROUTER_API_KEY : ${{ secrets.OPENROUTER_API_KEY }}
14
16
15
17
jobs :
16
18
build :
25
27
python_version : ['3.10']
26
28
extras : ['-E all']
27
29
model : ['openai/gpt-4o-mini', 'anthropic/claude-3-haiku-20240307']
30
+ include :
31
+ # no extras, latest python
32
+ - os : ubuntu-latest
33
+ python_version : ' 3.13'
34
+ extras : ' '
35
+ model : ' anthropic/claude-3-haiku-20240307'
36
+ # deepseek
37
+ - os : ubuntu-latest
38
+ python_version : ' 3.10'
39
+ extras : ' '
40
+ model : ' deepseek/deepseek-chat'
41
+ # openrouter
42
+ - os : ubuntu-latest
43
+ python_version : ' 3.10'
44
+ extras : ' '
45
+ model : ' openrouter/deepseek/deepseek-chat'
46
+ # openrouter (llama)
47
+ - os : ubuntu-latest
48
+ python_version : ' 3.10'
49
+ extras : ' '
50
+ model : ' openrouter/meta-llama/llama-3.3-70B-instruct'
51
+
28
52
steps :
29
53
- uses : actions/checkout@v4
30
54
with :
You can’t perform that action at this time.
0 commit comments