Earlier quoted context omitted.
GPT-4 is quite capable of writing function-length sections of code based only on descriptions. Either in a context where you're not sure what the a good approach is (for myself, when writing Javascript for example), or when you know what needs to be done but it's just somewhat tedious. Here's a session from me working on a side project yesterday: https://chat.openai.com/share/a6928c16-1c18-4c08-ae02-82538d... The mos…
Wow, so, you're not a DBE or DBA but are applying indexes across a database without concern because...a computer model spat out that you should?
Major outages across ChatGPT and API
531–540 of 617 posts
Re: Major outages across ChatGPT and API
#532I'd be curious to hear about the workflows people have come up with using ChatGPT. I'm still in the realm of "I don't know how to do this" or "I forgot the exact incantation to that" or "is the an X that does Y in framework Z?"
I like to use it for one-off scripts. For example, I downloaded a bunch of bank statements the other day, and they had a format something like, "Statement-May-1-2023.pdf" and I asked GPT for a powershell script to convert that to "2023-05-01-BankName-Statement.pdf" It saved a bunch of manual work on a throwaway script. In the past, I might have done something in Python, since I'm more familiar with it than powershell…
Re: Major outages across ChatGPT and API
#533Phind is pretty good for coding (LLama 2 trained on billions of extra code tokens) and is still up https://www.phind.com/s
Re: Major outages across ChatGPT and API
#534Earlier quoted context omitted.
This reminds us that, what if our databases are maintained using OpenAI's embeddings, and the API suddenly goes down? How do we find alternatives to match the already generated database?
I don't think you can do that easily. If you already have a list of embeddings from a different model, you might be able to generate an alignment somehow, but in general, I wouldn't recommend it.
1. Generate embeddings using services such as OpenAI, which is usually more powerful;
2. Generate backup embeddings using local, more stable models, such as Llama2 embeddings or simply some BERT-family-model (which is more affordable).
When outages comes up you simply switch from one vector space to another. Though possible, model alignments are much harder and more expensive to achieve.
Re: Major outages across ChatGPT and API
#535Dreaming of the day I run my own models and can be entirely responsible for my own outages.
You can do that today. Oobabooga + Hugging Face models.
For my hand typed use case's, GPT-4 is the only acceptable model that doesn't leave me frustrated and angry at wasting time. For some automated stuff (converting text to json, etc), the local models are fine.
Re: Major outages across ChatGPT and API
#536Earlier quoted context omitted.
Wow, so, you're not a DBE or DBA but are applying indexes across a database without concern because...a computer model spat out that you should?
I am also not those. Is there something wrong with too many indexes, assuming memory isn't a huge constraint?
Lesser issues: additional strain on index rebuilding whenever that happens; messing with execution plans and causing the query planner to be inefficient; primary/secondary memory overhead; or if your DB engine uses locks you can run into a myriad of issues there.
I'm all for SWEs learning about databases, as I'm morally opposed to the proliferation of ORMs and the like, but I don't think ChatGPT is the right way to go about things long-term. It's similar to Googling or using StackOverflow: yes, you will find information that is relevant to what interests you at the moment, but it's soon forgotten and does nothing to help build long-term mental models.
Re: Major outages across ChatGPT and API
#537Earlier quoted context omitted.
People constantly recommend Bard to me, but it returns false and/or misleading info almost every time
Gpt-4 has the lowest hallucination rates: > OpenAI’s technologies had the lowest rate, around 3 percent. Systems from Meta, which owns Facebook and Instagram, hovered around 5 percent. The Claude 2 system offered by Anthropic, an OpenAI rival also based in San Francisco, topped 8 percent. A Google system, Palm chat, had the highest rate at 27 percent. https://www.nytimes.com/2023/11/06/technology/chatbots-hallu...
Re: Major outages across ChatGPT and API
#538Earlier quoted context omitted.
What is so special about OpenAI's cloud hardware that one can't build themselves a similar server to run AI models of similar size?
Nothing stopping you from buying an H100 and putting it in your desktop. As for me, I’ve got other uses for $45k.
Re: Major outages across ChatGPT and API
#539Earlier quoted context omitted.
I am curious how people are using Phind. I actually had a discussion with Phind itself recently, in which I said that in order to help me, it seems like it would need to ingest my codebase so that it understands what I am talking about. Without knowing my various models, etc, I don't see how it could write anything but the most trivial functions. It responded that, yes, it would need to ingest my codebase, but it cou…
Founder here. We have a VS Code extension that automatically fetches context from your codebase.
Re: Major outages across ChatGPT and API
#540Earlier quoted context omitted.
Founder here. We have a VS Code extension that automatically fetches context from your codebase.
Does the plugin use the codebase code in the model itself for training, or does it stay locally? Just curious about the privacy.