Gotcha and thank you! So the encryption is happening on the OpenAI backend and the agent's clear-text output designated to the sub-agent never reaches local. Which is a real problem since you can't intercept/monkey…
Could someone explain to me where exactly the encryption is happening? I assumed that the main agent makes calls to sub-agents locally. Does Codex work in such a way where the main agent makes calls to sub-agents in the…
Out of curiosity, can there not be something like a two party or N party veto? i.e. requiring a minimum of two or N parties to work together to veto? The choice between just a single party having a veto power vs no…
I just checked again. 16GB DDR5 (291 Euro) to 32GB (519 Euro). Seems right to me and does not match what you reported. Maybe they updated the website by the time I checked.
I checked the prices for 64GB DDR5. There's some variance based on brand/model but the average and trend seems more or less right. Did you happen to notice that it is about prices in the EU?
Thank you author Ian Mckay! This is one of those good hygiene conventions that save time by not having to think/worry each time buckets are named. As pointed out in the article, AWS seems to have made this part of their…
Potential reasons I can think of for why they don't disallow name reuse: a) AWS will need to maintain a database of all historical bucket names to know what to disallow. This is hard per region and even harder globally.…
I'd ask politely to refrain from such comments :) This is not me criticising you. I totally understand the urge to say it. We're all thinking the thing you're thinking of. It takes effort not to give into it ;) The…
[flagged]
I agree, Databricks is one of many in the space. If S3 makes Databricks redundant, then they also make others like Databricks redundant too.
S3 has much bigger fish in its sight than the measely vector db space. If you see the subtle improvements in features of S3 in recent years, it is clear as day, at least to me, that they're going after the whale that is…
I just did a wget of the site and noticed the following line at the end. > <script async src="https://www.googletagmanager.com/gtag/js?xxxxxxx"></script> I am going to use this for sure, but it is a little ironic.
I'd say that's where we're headed. A big model that's trained from the start to use tools and know when to use certain tools and how to use tools. Like us :) I wouldn't be surprised if someone's building a dataset for…
To be fair, I'd put finding literal string diffs in the category of asking LLMs to do rote arithmetic. The attention mechanism does far too much complex thinking for such a dumb task. This is precisely where you need to…
As far as I can tell, the paper covers text documents only. Therefore your example doesn't quite apply. It is well known that LLMs have a ways to go when it comes to processing images like they process text or audio. I…
> Log-linear attention replaces the fixed-size hidden state with a logarithmically growing set of hidden states Does this mean the models can be smaller too (on top of the primary benefit of being faster)?
That's fair. I care about the end result. The problem is about taking information in 2D/3D space and solving the problem. Humans solve these things through vision. LLMs or AI can do it using another algorithm and…
Don't take this the wrong way, your opinion is also vibes. Let's ground that a bit. Have a look at ARC AGI 1 challenge/benchmark. Solve a problem or two yourself. Know that ARC AGI 1 is practically solved by a few LLMs…
Thanks for the reply and apologies for the general cynicism. It's not lost on me that it's people like you that build tools that make the work tick. I'm just a loud potential customer and I'm just forwarding the…
I've read the link and the GitHub readme page. I'm sure I'm in the top 1% of software devs for the most number of timestamps parsed. [1] DST is not a problem in Python. It's parsing string timestamps. All libraries are…
Is there a terminology battle happening in some circles? And if so, what are the consequences of being wrong and using the wrong terminology? I follow the rnd and progress in this space and I haven't heard anyone make a…
How does it compare with s5cmd [1]? s5cmd is my goto tool for fast s3 sync and they have the following at the top of their Github page: > For uploads, s5cmd is 32x faster than s3cmd and 12x faster than aws-cli. For…
I've been inadvertently working on this topic and I'd like to share some findings. * Do not confuse bots with DDoS. While bot traffic may end up overwhelming your server, your DDoS SaaS will not stop that traffic unless…
Many parents don't know social media is bad. I've had to convince my partner that it is harmful over many months. She's only now stopped doom scrolling instagram. We finally came to an agreement that our child will not…
But don't input embeddings need to undergo backprop during training? Won't the external-model's embeddings just be noise since they don't share embedding space with the model that is being trained? If the external-model…
Gotcha and thank you! So the encryption is happening on the OpenAI backend and the agent's clear-text output designated to the sub-agent never reaches local. Which is a real problem since you can't intercept/monkey…
Could someone explain to me where exactly the encryption is happening? I assumed that the main agent makes calls to sub-agents locally. Does Codex work in such a way where the main agent makes calls to sub-agents in the…
Out of curiosity, can there not be something like a two party or N party veto? i.e. requiring a minimum of two or N parties to work together to veto? The choice between just a single party having a veto power vs no…
I just checked again. 16GB DDR5 (291 Euro) to 32GB (519 Euro). Seems right to me and does not match what you reported. Maybe they updated the website by the time I checked.
I checked the prices for 64GB DDR5. There's some variance based on brand/model but the average and trend seems more or less right. Did you happen to notice that it is about prices in the EU?
Thank you author Ian Mckay! This is one of those good hygiene conventions that save time by not having to think/worry each time buckets are named. As pointed out in the article, AWS seems to have made this part of their…
Potential reasons I can think of for why they don't disallow name reuse: a) AWS will need to maintain a database of all historical bucket names to know what to disallow. This is hard per region and even harder globally.…
I'd ask politely to refrain from such comments :) This is not me criticising you. I totally understand the urge to say it. We're all thinking the thing you're thinking of. It takes effort not to give into it ;) The…
[flagged]
I agree, Databricks is one of many in the space. If S3 makes Databricks redundant, then they also make others like Databricks redundant too.
S3 has much bigger fish in its sight than the measely vector db space. If you see the subtle improvements in features of S3 in recent years, it is clear as day, at least to me, that they're going after the whale that is…
I just did a wget of the site and noticed the following line at the end. > <script async src="https://www.googletagmanager.com/gtag/js?xxxxxxx"></script> I am going to use this for sure, but it is a little ironic.
I'd say that's where we're headed. A big model that's trained from the start to use tools and know when to use certain tools and how to use tools. Like us :) I wouldn't be surprised if someone's building a dataset for…
To be fair, I'd put finding literal string diffs in the category of asking LLMs to do rote arithmetic. The attention mechanism does far too much complex thinking for such a dumb task. This is precisely where you need to…
As far as I can tell, the paper covers text documents only. Therefore your example doesn't quite apply. It is well known that LLMs have a ways to go when it comes to processing images like they process text or audio. I…
> Log-linear attention replaces the fixed-size hidden state with a logarithmically growing set of hidden states Does this mean the models can be smaller too (on top of the primary benefit of being faster)?
That's fair. I care about the end result. The problem is about taking information in 2D/3D space and solving the problem. Humans solve these things through vision. LLMs or AI can do it using another algorithm and…
Don't take this the wrong way, your opinion is also vibes. Let's ground that a bit. Have a look at ARC AGI 1 challenge/benchmark. Solve a problem or two yourself. Know that ARC AGI 1 is practically solved by a few LLMs…
Thanks for the reply and apologies for the general cynicism. It's not lost on me that it's people like you that build tools that make the work tick. I'm just a loud potential customer and I'm just forwarding the…
I've read the link and the GitHub readme page. I'm sure I'm in the top 1% of software devs for the most number of timestamps parsed. [1] DST is not a problem in Python. It's parsing string timestamps. All libraries are…
Is there a terminology battle happening in some circles? And if so, what are the consequences of being wrong and using the wrong terminology? I follow the rnd and progress in this space and I haven't heard anyone make a…
How does it compare with s5cmd [1]? s5cmd is my goto tool for fast s3 sync and they have the following at the top of their Github page: > For uploads, s5cmd is 32x faster than s3cmd and 12x faster than aws-cli. For…
I've been inadvertently working on this topic and I'd like to share some findings. * Do not confuse bots with DDoS. While bot traffic may end up overwhelming your server, your DDoS SaaS will not stop that traffic unless…
Many parents don't know social media is bad. I've had to convince my partner that it is harmful over many months. She's only now stopped doom scrolling instagram. We finally came to an agreement that our child will not…
But don't input embeddings need to undergo backprop during training? Won't the external-model's embeddings just be noise since they don't share embedding space with the model that is being trained? If the external-model…