From 2807dcac8f2dc3e511e70b759be7c26736f016dd Mon Sep 17 00:00:00 2001 From: Robert Caulk Date: Sat, 29 Jun 2024 01:27:50 +0200 Subject: [PATCH] Add asknews example (#1008) AskNews is processing 300k articles per day on-premise with vLLM and outlines. Outlines enables much deeper analysis of each article, since the LLM doesnt need to worry about structure. Instead, it can focus attention on important output like extracting "Reporting Voice" typed as a `Literal[str]`. Thanks to the maintainers of this project! --- docs/community/examples.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/community/examples.md b/docs/community/examples.md index 515385b40..e606ca019 100644 --- a/docs/community/examples.md +++ b/docs/community/examples.md @@ -13,3 +13,5 @@ Publishing examples and articles about Outlines are a meaningful way to contrinu [gigax](https://github.com/GigaxGames/gigax) is an Open-Source library that allows to create real-time LLM-powered NPCs for video games. [Improving Prompt Consistency with Structured Generations](https://huggingface.co/blog/evaluation-structured-outputs) shows how structured generation can improve consistency of evaluation runs by reducing sensitivity to changes in prompt format. + +[AskNews](https://asknews.app) is a news curation service processing 300k news articles per day in a structured way, with Outlines.