From 3ac477595c0f949805f3031397f2d2eb62b85a44 Mon Sep 17 00:00:00 2001 From: "joana.ferreira@adidas.com" Date: Thu, 5 Dec 2024 10:29:57 +0000 Subject: [PATCH] Add posts entry --- website/src/posts.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/website/src/posts.ts b/website/src/posts.ts index 9ae596810..4d02e7f10 100644 --- a/website/src/posts.ts +++ b/website/src/posts.ts @@ -26,6 +26,33 @@ export type Release = { // Sort by date descending export const BLOGS: Blog[] = [ + { + title: "From Natural Language to SQL: Building and Tracking a Multi-Lingual Query Engine", + path: "/blog/from-natural-language-to-sql", + tags: ["pyfunc", "mlflow", "sql-generator", "models-from-code", "tracing"], + authors: [ + { + name: "Hugo Carvalho", + title: "Machine Learning Analyst at adidas", + url: "https://www.linkedin.com/in/hugodscarvalho/", + image_url: "/img/authors/hugo_carvalho.png", + }, + { + name: "Joana Ferreira", + title: "Machine Learning Engineer at adidas", + url: "https://www.linkedin.com/in/joanaferreira96/", + image_url: "/img/authors/joana_ferreira.png", + }, + { + name: "Rahul Pandey", + title: "Sr. Solutions Architect at adidas", + url: "https://www.linkedin.com/in/rahulpandey1901/", + image_url: "/img/ambassadors/Rahul_Pandey.png", + }, + ], + date: "2024-12-04", + thumbnail: "/img/blog/from-natural-language-to-sql.png", + }, { title: "LangGraph with Custom PyFunc", path: "/blog/mlflow",