File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 38
38
steps :
39
39
- uses : actions/checkout@v4
40
40
41
+ - name : Set up QEMU
42
+ uses : docker/setup-qemu-action@v3
43
+
41
44
- name : Set up Docker Buildx
42
45
uses : docker/setup-buildx-action@v3
43
46
63
66
with :
64
67
context : .
65
68
push : true
69
+ platforms : linux/amd64,linux/arm64
66
70
tags : ${{ steps.meta.outputs.tags }}
67
71
labels : ${{ steps.meta.outputs.labels }}
72
+ cache-from : type=gha
73
+ cache-to : type=gha,mode=max
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def extract_urls(text: str) -> List[str]:
25
25
def fetch_webpage_content (url : str , max_length : int = 100000 ) -> str :
26
26
try :
27
27
headers = {
28
- 'User-Agent' : 'optillm/0.0.18 (https://github.com/codelion/optillm)'
28
+ 'User-Agent' : 'optillm/0.0.19 (https://github.com/codelion/optillm)'
29
29
}
30
30
31
31
response = requests .get (url , headers = headers , timeout = 10 )
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = "optillm" ,
5
- version = "0.0.18 " ,
5
+ version = "0.0.19 " ,
6
6
packages = find_packages (),
7
7
py_modules = ['optillm' ],
8
8
package_data = {
You can’t perform that action at this time.
0 commit comments