Todsaporn Banjerdkit
Todsaporn Banjerdkit
Hi, When I try to upload unicode filename like `กา.png` it will return ``` http://127.0.0.1:3000/upload//%E0%B8%81%E0%B8%B2.png ``` which is 404 (Not Found), but upload is successful and file is there. Any...
I think it would be nice to have [ControlNet](https://github.com/lllyasviel/ControlNet) support. Not sure how hard it gonna take for this task. 🤔
Refer to https://github.com/discord/discord-interactions-js/blob/main/src/index.ts#L96-L97 ```ts const arrayBuffer = value.buffer.slice(value.byteOffset, value.byteOffset + value.length); return new Uint8Array(value); ``` ts warning... ``` 'arrayBuffer' is declared but its value is never read. ``` So the...
Let say I input `from_block=10697423&to_block=10697423` as parameters ## Reproduce ```bash curl -X 'POST' \ 'https://deep-index.moralis.io/api/v2/0x158da805682bdc8ee32d52833ad41e74bb951e59/events?chain=bsc&from_block=10697423&to_block=10697423&topic=Work%28uint256%2Cuint256%29' \ -H 'accept: application/json' \ -H 'X-API-Key: YOUR_API_KEY_HERE' \ -H 'Content-Type: application/json' \ -d '{...
## To reproduce ```bash curl -X 'GET' \ 'https://deep-index.moralis.io/api/v2/0x8155430e4860e791aeddb43e4764d15de7e0def1/erc20?chain=bsc' \ -H 'accept: application/json' \ -H 'X-API-Key: YOUR_API_KEY' ``` ## Actual ```json [ { "token_address": "0xe9e7cea3dedca5984780bafc599bd69add087d56", "name": "BUSD Token", "symbol": "BUSD",...
Thanks for sharing this 👉 https://github.com/adithya-s-k/CompanionLLM/blob/main/Mistral_7B_qLora_Finetuning.ipynb I learn a lot from that, btw I'm not quite understand what I miss there ### Issues 1. `Generated instruction`, the 1-3 characters get...
Hi, Maybe it's a good idea to use [certbot docker image](https://hub.docker.com/r/certbot/certbot/) instead of `curl` `certbot-auto` package while build? Thanks
For an example https://github.com/qdrant/examples/blob/06fd19db652bcd9f88e35c8e178a114b5791e8c9/rag-openai-qdrant/rag-openai-qdrant.ipynb still use `query_text`. ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[9], [line 1](vscode-notebook-cell:?execution_count=9&line=1) ----> [1](vscode-notebook-cell:?execution_count=9&line=1) results = client.search( [2](vscode-notebook-cell:?execution_count=9&line=2) collection_name="knowledge-base", [3](vscode-notebook-cell:?execution_count=9&line=3) query_text=prompt, [4](vscode-notebook-cell:?execution_count=9&line=4) limit=3,...
I can see simple `fn` support (COOL!) but I didn't any mention or an example for `async` and also `nodejs` support or maybe `TODO`?