Readit News logoReadit News
philip1209 commented on From $479 to $2,800 a month for ACA health insurance next year   npr.org/sections/shots-he... · Posted by u/laurex
atonse · 2 days ago
I still feel that something like Medicare for All should just be an issue for those that are all about free markets and entrepreneurship.

Maybe there are millions in America that only keep their jobs for the health benefits rather than starting a 1-2 person business.

It just seems so silly.

philip1209 · 2 days ago
It's also an equality issue. People stay in abusive relationships because of healthcare.

Related: "My gift to USA" by Harald Eia (Norwegian comedian) https://www.youtube.com/watch?v=PguJ-lm4uLg

Takeaway of that video: "Can you really be free if you have to depend on somebody else?"

philip1209 commented on Show HN: Chroma Cloud – serverless search database for AI   trychroma.com/cloud... · Posted by u/jeffchuber
poopiokaka · 4 days ago
Why does it say open source but then try to charge me money
philip1209 · 4 days ago
Chroma's open-source under an Apache 2.0 License: https://github.com/chroma-core/chroma

Single-node Chroma is very easy to self-host for free: https://docs.trychroma.com/guides/deploy/docker

philip1209 commented on Show HN: Chroma Cloud – serverless search database for AI   trychroma.com/cloud... · Posted by u/jeffchuber
netpaladinx · 5 days ago
object storage here do you mean the recent released S3 Vector?
philip1209 · 5 days ago
We use S3, but not S3 Vector.

Deleted Comment

philip1209 commented on Show HN: Chroma Cloud – serverless search database for AI   trychroma.com/cloud... · Posted by u/jeffchuber
maz1b · 5 days ago
Best of luck. Do you guys have anything for startups?
philip1209 · 5 days ago
Philip here from the Chroma team.

I see your email in your profile, so I'll reach out.

We work closely with any startup that wants help, ranging from whiteboarding architectures to a shared slack channel.

Deleted Comment

philip1209 commented on Show HN: Chroma Cloud – serverless search database for AI   trychroma.com/cloud... · Posted by u/jeffchuber
tbird24 · 5 days ago
I run a fractional jobs site. Lots of non-technical customers are interested in ai. What problem does Chroma solve for these non-technical users?
philip1209 · 5 days ago
High-level, Chroma lets you incorporate your own data into AI. That can be business data, like your help docs, or customer data, such as private documents.

I think there's a misconception among many non-technical people that they should "fine tune" models - to make an LLM sound like their brand or know their internal data. But, the best practice today is "context engineering" - to use a commodity LLM, and add propriety information into the prompt.

The hard part of context engineering is knowing which data to incorporate. For example, all help docs in every context creates context rot [1] that hurts accuracy, so you need a way to find which information to put in which context. The solution is essentially an internal search engine, which is Chroma.

Chroma gives AI multiple ways to search, and you can either hard-code which one works best for you - or let an agent write its own queries to conduct research by itself. Vector search is a generation ahead of old search infrastructure, and is useful for relatedness queries - like "help docs about billing". Full-text search is useful for proper nouns, like "Next.js". Regex search is useful for code and laws. Metadata search is more nuanced, but becomes really important in document search (e.g., PDFs). Chroma lets you run all of these search methods against private data, and you can use it to even include citations in results.

So, the high-level answer is: Chroma enables you to incorporate your business or customer data into AI.

[1] https://research.trychroma.com/context-rot

philip1209 commented on Show HN: Chroma Cloud – serverless search database for AI   trychroma.com/cloud... · Posted by u/jeffchuber
codekisser · 5 days ago
what place do vector-native databases have in 2025? I feel using pgvector or redisearch works well and most setups will probably be using postgres or redis anyway.
philip1209 · 5 days ago
Philip here from the Chroma engineering team.

Chroma supports multiple search methods - including vector, full-text, and regex search.

Four quick ways Chroma is different than pgvector: Better indexes, sharding, scaling, and object storage.

Chroma uses SPANN (Scalable Approximate Nearest Neighbor) and SPFresh (a freshness-aware ANN index). These are specialized algorithms not present in pgvector. [1].

The core issue with scaling vector database indexes is that they don't handle `WHERE` clauses efficiently like SQL. In SQL you can ask "select * from posts where organization_id=7" and the b-tree gives good performance. But, with vector databases - as the index size grows, not only does it get slower - it gets less accurate. Combining filtering with large indexes results in poor performance and accuracy.

The solution is to have many small indexes, which Chroma calls "Collections". So, instead of having all user data in one table - you shard across collections, which improves performance and accuracy.

The third issue with using SQL for vectors is that the vectors quickly become a scaling constraint for the database. Writes become slow due to consistency, disk becomes a majority vector indexes, and CPU becomes clogged by re-computing indexes constantly. I've been there and ultimately it hurts overall application performance for end-users. The solution for Chroma Cloud is a distributed system - which allows strong consistency, high-throughput of writes, and low-latency reads.

Finally, Chroma is built on object storage - vectors are stored on AWS S3. This allows cold + warm storage tiers, so that you can have minimal storage costs for cold data. This "scale to zero" property is especially important for multi-tenant applications that need to retain data for inactive users.

[1] https://www.youtube.com/watch?v=1QdwYWd3S1g

philip1209 commented on Show HN: Fractional jobs – part-time roles for engineers   fractionaljobs.io... · Posted by u/tbird24
freecodyx · 6 days ago
[flagged]
philip1209 · 6 days ago
view-source says Webflow
philip1209 commented on Show HN: Fractional jobs – part-time roles for engineers   fractionaljobs.io... · Posted by u/tbird24
philip1209 · 6 days ago
That’s cool- I worked on a similar website a few years ago.

Do your jobs tend to be for technical or non-technical customers? What are the characteristics of developers who succeed on your site?

u/philip1209

KarmaCake day12051February 26, 2012
About
https://www.philipithomas.com
View Original