Loreto Parisi
Loreto Parisi
@xNul amazing! Shall I have to replicate the install process or you did a package? I can try on both Intel and apple silicon thanks.
All the exposed callback methods like here: ``` breach.expose('init', function(src, args, cb_) { breach.module('core').call('tabs_new_tab_url', { url: 'http://127.0.0.1:' + port + '/newtab' }, function(err) { console.log('New tab page set! [' +...
The error that I have is Building on armv7 standard arch: target specifies product type 'com.apple.product-type.framework.static', but there's no such product type for the 'iphoneos' platform
It worked after using the commit: https://github.com/pub-burrito/iOS-Universal-Framework/commit/08a4052b6d056a25ae2c9c2cadedbd0e01c8a516 1. Installing the framework again 2. Creating a new project and copying the three Run Script in the project with errors. 3. Adding...
Did you face this issue https://github.com/kstenerud/iOS-Universal-Framework/issues/197 as well?
Having a similar issue on XCode 6 (now Gold Master) due to iphone simulator folder (I guess) for the same script: https://github.com/kstenerud/iOS-Universal-Framework/issues/197
Another very weird and unexpected behaviour of the quantized model is token repetition: ``` % ./bin/gpt-2 -m models/Cerebras-GPT/2.7B/ggml-model-q4_1.bin -p "Java is a programming " -n 100 main: seed = 1680555058...
**[NOTE]** Using ```python OVERRIDE_HTTP_HEADERS = { 'X-Frame-Options': 'ALLOWALL' } HTTP_HEADERS = { "X-Frame-Options" : "ALLOWALL" } ``` or as detailed [here](https://github.com/apache/superset/issues/6418) ```python HTTP_HEADERS = {} ``` does not solve this...
My solution was to write a Flask Middlware to send the proper headers, specifically ```python response.headers.add("Cross-Origin-Embedder-Policy", 'require-corp') response.headers.add("Cross-Origin-Resource-Policy", 'cross-origin') ``` As alternative, when using a reverse proxy (e.g. nginix) it...