Evgeniy

Results 43 comments of Evgeniy

Patience I must have: in debugger I have output, the most long time row is `y = sample(logits[:, -1, :])` may be on quantized weights it will be faster but...

> Should give `Device(gpu, 0)`. Output as expected: ```python import mlx.core as mx; PyDev console: starting. print(mx.default_device()) Device(gpu, 0) ``` swap is defenitely using However... can i trust htop on...

> quantized model @rodchile can you share more details please? how did you get quantizing? If it was gguf from TheBloke or something other? If it was gguf does conversion...

Got same issue. Here's my temporary solution applied to Jinja extension.py ``` def shared_session(request): from shared_session.templatetags.shared_session import LoaderNode class ByPass(LoaderNode): """ https://github.com/ViktorStiskala/django-shared-session/issues/11 """ def get_message(self,request, domain): enc_payload = self.encrypt_payload({ 'key':...

In simplest way looks like requests.post can be used ```curl -X POST -H "Content-Type: application/json" --cookie "token_v2="YOURTOKEN" -d '{"type":"block","blockId":"PAGE_WHERE_WEBCLIPPEDPAGE_APPEAR","items":[{"url":"https://gist.github.com/subfuzion/08c5d85437d5d4f00e58","title":"curl examples"}],"from":"curl"}' https://www.notion.so/api/v3/addWebClipperURLs``` Will get you response: ```{"parentBlock":{"record":{"table":"block","type":"page","id":"PAGEID","role":"editor","name":"NAME","iconEmoji":"📲"},"ancestors":[]},"createdBlockIds":["CREATEDBLOCKID"]}``` Data pass formatted: ```json...

in "blockId" I passed top-level page.id gotten from: ```python page = client.get_block("https://www.notion.so/PAGE") page.id '99999999-9999-9999-9999-999999999999' ``` ```json { "type": "block", "blockId": "99999999-9999-9999-9999-999999999999", "items": [ { "url": "https://www.postgresql.org/docs/current/functions-json.html", "title": "result page" }...

> Hey, > Just for learning purposes , > I tried my hand in obtaining the addWebClipperURLs , i was using Google Chrome , when i trigger the Webclipper Extension...

> Hey > Thanks btw, > But for me > **Inspect views : background.html** is not coming , when i open manage extensions > May be they might have done...

@TitusRobyK can you try this method? `chrome-extension:///background.html` Found from [this](https://medium.com/damon-aw/working-with-background-pages-on-chrome-extensions-this-hack-will-change-your-life-b6df8a29d86) article