You are viewing archived messages.
Go here to search the history.

Jason Morris 2023-09-17 06:08:25

Apart from things like the langchain and hugging face blogs, does anyone have any good resources for the latest tools and techniques for LLM prompt engineering? I need to bone up, this week.

Mariano Guerra 2023-09-17 09:28:15

📝 Prompt engineering techniques with Azure OpenAI - Azure OpenAI Service

Learn about the options for how to use prompt engineering with GPT-3, GPT-35-Turbo, and GPT-4 models

Mariano Guerra 2023-09-17 09:28:33

📝 Prompt Engineering

Prompt Engineering, also known as In-Context Prompting, refers to methods for how to communicate with LLM to steer its behavior for desired outcomes without updating the model weights. It is an empirical science and the effect of prompt engineering methods can vary a lot among models, thus requiring heavy experimentation and heuristics. This post only focuses on prompt engineering for autoregressive language models, so nothing with Cloze tests, image generation or multimodality models.

Mariano Guerra 2023-09-17 09:29:53

📝 Building LLM applications for production

[Hacker News discussion, LinkedIn discussion, Twitter thread]

Mariano Guerra 2023-09-17 09:31:14

📝 Re-implementing LangChain in 100 lines of code

LangChain has become a tremendously popular toolkit for building a wide range of LLM-powered applications, including chat, Q&A and document search. In this blogpost I re-implement some of the novel LangChain functionality as a learning exercise, looking at the low-level prompts it uses to create these higher level capabilities.