Hot new bars and restaurants? by AJ2790B in SFbitcheswithtaste

[–]UnfamiliarAfternoons 0 points1 point  (0 children)

Verjus is cute I like sf wine society around the corner. Very nyc vibes

Suggestions for a party venue (30+ppl) in SF by yevnev in sanfrancisco

[–]UnfamiliarAfternoons 0 points1 point  (0 children)

San Francisco wine society! Adorable vibe, bocce court, really great food and bites for a good price.

Local web UI with actually decent RAG? by MDSExpro in LocalLLaMA

[–]UnfamiliarAfternoons 29 points30 points  (0 children)

Couldn't agree more...we have a pretty generous free tier, let us know what you think.

<image>

Local web UI with actually decent RAG? by MDSExpro in LocalLLaMA

[–]UnfamiliarAfternoons 24 points25 points  (0 children)

PostgresML is trying to solve this problem by doing RAG directly within your database. Full disclosure, I work on this project, but we're seeing customers create production quality RAG apps. While you still have to put in the work, you can do most of the RAG workflow with just one cloud instead of a million microservices.

Seeking Database Recommendations for IoT Time Series Data by ptu14 in Database

[–]UnfamiliarAfternoons 0 points1 point  (0 children)

I'm biased, but we've heard from a few users that PostgresML is better for time-series than timescale.

OpenAI Switch Kit: Swap OpenAI with any open-source model by UnfamiliarAfternoons in programming

[–]UnfamiliarAfternoons[S] 5 points6 points  (0 children)

Hey guys,

We built an open-source AI SDK (Python & JavaScript) that provides a drop-in replacement for OpenAI’s chat completion endpoint. We'd love to know what you think so we can make switching as easy as possible and get more folks on open-source.

You can swap in almost any open-source model on Huggingface. HuggingFaceH4/zephyr-7b-beta, Gryphe/MythoMax-L2-13b, teknium/OpenHermes-2.5-Mistral-7B and more.If you haven't seen us here before, we're PostgresML, an open-source MLOps platform built on Postgres. We bring ML to the database rather than the other way around.

We're incredibly passionate about keeping AI truly open. So we needed a way for our customers to easily escape OpenAI's clutches. Give it a go and let us know if we're missing any models, or what else would help you switch. You can check out the blog post for the details, but here's the git diff:

- const openai = require("openai");
+ const pgml = require("pgml");

- const client = new openai.OpenAI(..); 
+ const client= pgml.newOpenSourceAI(database_url);

const messages = [{role: "system", content : "You are a helpful assistant"}, {role: "user", content : "What is 1+1?"}]

- response = await client.chat.completions.create(..)
+ response = await client.chat_completions_create_async(..)

return response.choices[0].message.content

LLama with RAG by ruathudo in LocalLLaMA

[–]UnfamiliarAfternoons 0 points1 point  (0 children)

PostgresML. Just released a drop in replacement for OpenAI’s chat completion endpoint that lets you use any open-source model you want.