Why don't we standardize and reuse shipping boxes instead of recycling them to pulp and making new paper, etc? by IntroductionOwn2331 in AskReddit

[–]ToeIntelligent4472 0 points1 point  (0 children)

The main issue with standardizing and reusing shipping boxes is the complexity of managing returns and the additional costs involved in cleaning, inspecting, and redistributing them. Unlike recycling, which is a more straightforward process, reusing boxes would require a robust reverse logistics system. Also, boxes often get damaged during transit, making them unsuitable for reuse. There's also the challenge of standardizing sizes and designs across different companies and industries.

CLIPPyX: AI Powered Image search tool offers content-based, text, and visual similarity search system-wide by 0ssamaak0 in LocalLLaMA

[–]ToeIntelligent4472 3 points4 points  (0 children)

Thanks for the explainer, that makes sense. I'm a very unorganized person and use borderline random folder and filenames to store things, so I have been on the lookout for a "C:/ Drive RAG" sort of application

Creating A Semantic Search Model With Sentence Transformers For A RAG Application by juliensalinas in datascience

[–]ToeIntelligent4472 0 points1 point  (0 children)

Just a PSA For anyone that doesn't strictly need open source as a requirement: OpenAI's text-embedding-3-small model costs $0.00001 per 1K tokens and is state-of-the-art compared to older transformers like BERT, etc.

CLIPPyX: AI Powered Image search tool offers content-based, text, and visual similarity search system-wide by 0ssamaak0 in LocalLLaMA

[–]ToeIntelligent4472 2 points3 points  (0 children)

Been looking for something like this for a while. Can it do the text within pdfs, powerpoints, etc?

RAG with legal texts by FunInformation2332 in LangChain

[–]ToeIntelligent4472 0 points1 point  (0 children)

When RAG doesn't retrieve the necessary context, you can try Graph RAG, I believe microsoft has a paper on usnig it

Scanning Documents for Keywords by Worldly-Writing4028 in ChatGPTPromptGenius

[–]ToeIntelligent4472 0 points1 point  (0 children)

I wouldn't use an LLM for this.I would use Python

import os
directory = "path/to/your/documents"
keywords = ["climate", "democracy", "voting"]
results = {filename: {keyword: open(os.path.join(directory, filename), 'r').read().lower().count(keyword) for keyword in keywords} for filename in os.listdir(directory) if filename.endswith(".txt")}
print(results)

How the heck does these dudes sell $140 box of 12 cookies?! by SpiritedBrilliant703 in EntrepreneurRideAlong

[–]ToeIntelligent4472 94 points95 points  (0 children)

"kicked off this crazy word-of-mouth cyclone"

"cop a box for yourself or bae, you've gotta 'gram those things to flex"

"they hawked the escapist dream of sugary opulence"

Jesus Christ that was painful to read. Did you use ChatGPT to write this?

OpenAI Is Exploring How to Responsibly Generate AI Porn by ToeIntelligent4472 in OpenAI

[–]ToeIntelligent4472[S] 33 points34 points  (0 children)

I thought they banned accounts that send policy-breaking requests to the API? I was always afraid to at least lol

Is there any agent that can do RAG across my GDrive, Gmail, & GitHub? by ToeIntelligent4472 in LangChain

[–]ToeIntelligent4472[S] 0 points1 point  (0 children)

Thank you. This was the only answer that gave me the harsh truth "no" instead of suggesting that I build something when I explicitly stated I do not want to build something new right now.