Prompt Engine – Microsoft's prompt engineering library
11–20 of 94 posts
Re: Prompt Engine – Microsoft's prompt engineering library
#12I am getting old: I read the description two times and checked examples yet still don't understand the utility. I do understand Midjourney prompt engineering though.
LLM n00b here. My 2c - Prompts are the input that you send to LLMs to get them to give you output. In general LLMs are large black boxes, and the output you get is not always great. The output can often be significantly improved by changing the input. Changing the input usually involves adding a ton of context - preambles, examples, etc. A lot of the work of prompt rewriting is like boilerplate generation. It is very…
Re: Prompt Engine – Microsoft's prompt engineering library
#13Earlier quoted context omitted.
Ah, sounds super-niche.
I think it won’t bein a few years; a whole of the interesting bits of putting LLMs to use is going to be at the level this supports, not building new models.
Re: Prompt Engine – Microsoft's prompt engineering library
#14Does anyone know what is the difference between Bing/Sydney and ChatGPT3 in terms of "generative power"?
Re: Prompt Engine – Microsoft's prompt engineering library
#15Re: Prompt Engine – Microsoft's prompt engineering library
#16/r
Re: Prompt Engine – Microsoft's prompt engineering library
#17Isn't the point of having such a simple interface that we should not have to think hard about how we ask the question? I feel like defining a structure for the query such that the machine outputs something useful is something we figured out a long time ago. Or maybe I'm just a luddite that doesn't understand the utility of something like this. Plus: if you know what the answer is supposed to be, why are you asking th…
Remember, the underlying LLM is just a brilliant text completion engine. Intellisense 4.0 and AskJeeves 2.0 and Waifu 1.0 are all different kinds of applications built on that.
Re: Prompt Engine – Microsoft's prompt engineering library
#18Re: Prompt Engine – Microsoft's prompt engineering library
#19The core idea is that you need a certain structure in order to deal with the limitations of GPT-3.5 or whatever. To get the best output, you give it a brief overview of what you want, a few examples, and the history of interaction. OpenAI's API does not remember the interaction history for you. And the limit is 4000 or 8000 tokens so you will need to truncate the beginning of the conversation at some point.
So this library provides a structure since it's something you will need to repeat for just about every significant text completion application or module.
Re: Prompt Engine – Microsoft's prompt engineering library
#20How does this compare or contrast to LangChain? It seems similar in that it is an abstraction on top of a lower level API but aside from that at a glance I can't tell the difference.