/* eslint-env node */ import { ImageResponse } from '@vercel/og' export const config = { runtime: 'edge' } export default async function image(req) { const { searchParams } = new URL(req.url) const hasTitle = searchParams.has('title') const title = hasTitle ? searchParams.get('title')?.slice(0, 100) : 'OpenLLM Documentation' return new ImageResponse( (

Fine-tune, serve and deploy LLMs in production.

{title}

), { width: 1200, height: 630 } ) }