text
stringlengths
3
8.33k
repo
stringclasses
52 values
path
stringlengths
6
141
language
stringclasses
35 values
sha
stringlengths
64
64
chunk_index
int32
0
273
n_tokens
int32
1
896
"use client" import * as React from "react" import * as AccordionPrimitive from "@radix-ui/react-accordion" import { ChevronDownIcon } from "lucide-react" import { cn } from "@/lib/utils" function Accordion({ ...props }: React.ComponentProps<typeof AccordionPrimitive.Root>) { return <AccordionPrimitive.Root data...
hacknation
www/components/ui/accordion.tsx
TypeScript
7251e973cc6896411e3348c1e9cd10bb359934b0e766055c9a3439b07b775edc
0
499
"use client"; import { AlertDialog as AlertDialogPrimitive } from "radix-ui"; import * as React from "react"; import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; const AlertDialog = AlertDialogPrimitive.Root; const AlertDialogTrigger = AlertDialogPrimitive.Trigger; const Alert...
hacknation
www/components/ui/alert-dialog.tsx
TypeScript
d91070e65117e38ef7ec35d65684e77fc3ae115049a5dc6d20ff68e17693a154
0
896
{cn(buttonVariants(), className)} ref={ref} {...props} /> )); AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName; const AlertDialogCancel = React.forwardRef< React.ElementRef<typeof AlertDialogPrimitive.Cancel>, React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel> >(({ ...
hacknation
www/components/ui/alert-dialog.tsx
TypeScript
a48c316c65935c27ed2b8c2b182c788a293b8d0c8838aa31ca82ce3673cebd22
1
165
import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" const alertVariants = cva( "relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground", ...
hacknation
www/components/ui/alert.tsx
TypeScript
ed78a053a9db783f48d5dfab7398b630f87c17ed2e237b6f30a3eb153675960c
0
427
import { Slot } from "@radix-ui/react-slot" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" import { Separator } from "@/components/ui/separator" const buttonGroupVariants = cva( "flex w-fit items-stretch has-[>[data-slot=button-group]]:gap-2 [&>*]:focus-visible:re...
hacknation
www/components/ui/button-group.tsx
TypeScript
e3716d270e9ef6457b5cd29464ae00194abc8093c08ebf726c9204d7a69231d9
0
651
import * as React from "react" import { Slot } from "@radix-ui/react-slot" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" const buttonVariants = cva( "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-[color,...
hacknation
www/components/ui/button.tsx
TypeScript
bf266386881c174a72c9aa1275b7443d2a698efd119b28f13caa9882e64cb8dc
0
604
import * as React from "react"; import { cn } from "@/lib/utils"; const Card = React.forwardRef< HTMLDivElement, React.HTMLAttributes<HTMLDivElement> >(({ className, ...props }, ref) => ( <div className={cn( "rounded-lg border bg-card text-card-foreground shadow-sm", className )} ref={re...
hacknation
www/components/ui/card.tsx
TypeScript
14604849a9efd20b7486c6dac0d693828d23f8fd7561db3af9e5d41a90fca6b0
0
594
"use client" import * as CollapsiblePrimitive from "@radix-ui/react-collapsible" const Collapsible = CollapsiblePrimitive.Root const CollapsibleTrigger = CollapsiblePrimitive.CollapsibleTrigger const CollapsibleContent = CollapsiblePrimitive.CollapsibleContent export { Collapsible, CollapsibleTrigger, CollapsibleC...
hacknation
www/components/ui/collapsible.tsx
TypeScript
f4cdd104de29928bfcd40b865c7d08eed9157a537fbb8b5e6d0921f02b63cc04
0
45
} className={cn( "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground", className )} {...props} /> )) CommandGroup.displayName = C...
hacknation
www/components/ui/command.tsx
TypeScript
ab06aa9372f8d35b5b3b56bc808e587d8486d18737de6c045ff9884435b9bae7
1
486
"use client" import * as React from "react" import * as DialogPrimitive from "@radix-ui/react-dialog" import { X } from "lucide-react" import { cn } from "@/lib/utils" const Dialog = DialogPrimitive.Root const DialogTrigger = DialogPrimitive.Trigger const DialogPortal = DialogPrimitive.Portal const DialogClose = ...
hacknation
www/components/ui/dialog.tsx
TypeScript
cbc537b6a288167701c091173e8e3e85ca87bbda042859006d326d42580dcabe
0
896
"smooth", }); } } }; // interval for changing images useEffect(() => { const timer = setInterval(() => { setCurrentIndex((prevIndex) => prevIndex !== undefined ? (prevIndex + 1) % featureItems.length : 0 ); }, collapseDelay); return () => clearInterval(timer); ...
hacknation
www/components/ui/feature-slideshow.tsx
TypeScript
526d7b3734f4e10dfc400060841920559b5d44ddf9f53916eea1503a9d251495
1
896
col-span-5 h-[350px] min-h-[200px] w-auto lg:col-span-3 ${ ltr && "md:order-1" }`} > {renderMedia()} </div> <ul ref={carouselRef} className="col-span-5 flex snap-x flex-nowrap overflow-x-auto [-ms-overflow-style:none] [-webkit-...
hacknation
www/components/ui/feature-slideshow.tsx
TypeScript
ccc5cefb5111168c59c6620da94de3c9a25952b1a656396b5583c37eb791f7ce
3
754
"use client"; import { cn, colorWithOpacity, getRGBA } from "@/lib/utils"; import React, { useCallback, useEffect, useMemo, useRef, useState, } from "react"; interface FlickeringGridProps extends React.HTMLAttributes<HTMLDivElement> { squareSize?: number; gridGap?: number; flickerChance?: number; co...
hacknation
www/components/ui/flickering-grid.tsx
TypeScript
d27dbfec7486c3bc946027b954ca29f818d54ae03265d14d18222c3cd5924e3b
0
896
"use client"; import createGlobe, { COBEOptions } from "cobe"; import { useMotionValue, useSpring } from "motion/react"; import { useEffect, useRef, useMemo } from "react"; import { useTheme } from "next-themes"; import { cn } from "@/lib/utils"; const MOVEMENT_DAMPING = 1400; const GLOBE_CONFIG: COBEOptions = { ...
hacknation
www/components/ui/globe.tsx
TypeScript
79092dd5d37c17c033781c3b4cd96310805588999a18a4e284e5d3528cfd1fbd
0
896
canvasRef.current!, { ...finalConfig, width: widthRef.current * 2, height: widthRef.current * 2, onRender: (state) => { if (!pointerInteracting.current) phiRef.current += 0.005; state.phi = phiRef.current + rs.get(); state.width = widthRef.current * 2; state.heigh...
hacknation
www/components/ui/globe.tsx
TypeScript
f4f35a4f4a7a5322aed51b9105820cf1180ade1c8e209a9daa3fa293bf0f574e
1
322
"use client" import * as React from "react" import { cva, type VariantProps } from "class-variance-authority" import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Textarea } from "@/components/ui/textarea" function InputGroup({ classN...
hacknation
www/components/ui/input-group.tsx
TypeScript
8d7e6257835e5d4f5d637bb3cede96878af47ac96a0f47ba55917b91622a3d99
0
896
{ className, align = "inline-start", ...props }: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>) { return ( <div role="group" data-slot="input-group-addon" data-align={align} className={cn(inputGroupAddonVariants({ align }), className)} onClick={(e) ...
hacknation
www/components/ui/input-group.tsx
TypeScript
997f7c7fba8073bca44cc643d2bde1ffea35f0cafa8638ee143ae8ebf474976f
1
716
/* eslint-disable @typescript-eslint/no-explicit-any */ import { cn } from "@/lib/utils"; import { marked } from "marked"; import { memo, useId, useMemo } from "react"; import ReactMarkdown, { Components } from "react-markdown"; import remarkGfm from "remark-gfm"; import { CodeBlock, CodeBlockCode } from "./code-block"...
hacknation
www/components/ui/markdown.tsx
TypeScript
6874609abb529fa03992262a2b21f17b59d311dfb0b8bfd0b194bbe5ca73faae
0
636
import { cn } from "@/lib/utils"; import { ComponentPropsWithoutRef } from "react"; interface MarqueeProps extends ComponentPropsWithoutRef<"div"> { /** * Optional CSS class name to apply custom styles */ className?: string; /** * Whether to reverse the animation direction * @default false */ re...
hacknation
www/components/ui/marquee.tsx
TypeScript
8ba3263b954bca1470329db0fc733a390a814a50cb1a9c09e6e2298b2886df27
0
398
, segmentDelay, characterChunkSize, }: ReasoningResponseProps) { const { isOpen } = useReasoningContext(); const { displayedText } = useTextStream({ textStream: text, speed, mode, onComplete, fadeDuration, segmentDelay, characterChunkSize, }); return ( <div className={...
hacknation
www/components/ui/reasoning.tsx
TypeScript
d6a346e8f7185c987b93079f7186b5479a4167551227ece5a7566cc6b36e2a35
1
130
import { cn } from "@/lib/utils" function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) { return ( <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} /> ) } export { Skeleton }
hacknation
www/components/ui/skeleton.tsx
TypeScript
a72a9d8fc1c1999b5411a33391c5e70048863c5865629077280e943ca85689a8
0
70
import * as React from "react" import { cn } from "@/lib/utils" const Table = React.forwardRef< HTMLTableElement, React.HTMLAttributes<HTMLTableElement> >(({ className, ...props }, ref) => ( <div className="relative w-full overflow-auto"> <table ref={ref} className={cn("w-full caption-bottom tex...
hacknation
www/components/ui/table.tsx
TypeScript
1da243956282c040db49d5718d2f0093a705fbbdfa3a25f51c1a31a069c45093
0
739
"use client"; import type { MapViewState, PickingInfo } from "deck.gl"; import { DeckGL, FlyToInterpolator, ScatterplotLayer } from "deck.gl"; import { useEffect, useMemo, useRef, useState } from "react"; import { Map as MapGL } from "react-map-gl/maplibre"; import "maplibre-gl/dist/maplibre-gl.css"; import { useVF } ...
hacknation
www/components/vf-ui/DeckMap.tsx
TypeScript
e524c28ad5efca186f79dffca80e11f9c00d8eff3b6548456261d447f8a77f3c
0
896
{ html: `<div style="font-family:var(--font-geist),system-ui,sans-serif;max-width:220px"> <div style="font-weight:600;font-size:13px;margin-bottom:2px">${escapeHtml(object.name)}</div> <div style="font-size:11px;color:${isDesert ? "#f87171" : "#93c5fd"}">${escapeHtml(object.type ?? "Facili...
hacknation
www/components/vf-ui/DeckMap.tsx
TypeScript
8190f159e84633a4343baa54fe443c20bd6563bbf59f625bdeffcb653a62230b
1
526
"use client"; import { Building2, MapPin } from "lucide-react"; import { InlineCitation, InlineCitationCard, InlineCitationCardBody, } from "@/components/ai-elements/inline-citation"; import { Badge } from "@/components/ui/badge"; import { HoverCardTrigger } from "@/components/ui/hover-card"; import { cn } from ...
hacknation
www/components/vf-ui/FacilityCitation.tsx
TypeScript
d75135a3369320210660c7198f8bf52e357769b2658118655cfdd0f2a42c1c88
0
896
{specialties && specialties.length > 0 && ( <div className="flex flex-wrap gap-1"> {specialties.slice(0, 4).map((s) => ( <Badge className="text-[10px] font-normal" key={s} variant="secondary" > ...
hacknation
www/components/vf-ui/FacilityCitation.tsx
TypeScript
213d06383a4769a6da00921ca486d2a1fce510fdd1e9c7c9180523c4d0f3b9f3
1
315
"use client"; import { useEffect, useState } from "react"; import { BedDouble, Building2, Calendar, Check, Copy, ExternalLink, Eye, Mail, MapPin, Maximize, Phone, Users, } from "lucide-react"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import...
hacknation
www/components/vf-ui/FacilityInlineCard.tsx
TypeScript
c3db1e5b144940aebd6609d2206502b6399c85d0e54bdd8060fe3d336c256a18
0
896
(f.name as string) || name; const type = f.facilityType as string | undefined; const operatorType = f.operatorType as string | undefined; const region = f.addressRegion as string | undefined; const city = f.addressCity as string | undefined; const beds = f.capacity as number | null; const doctors = f.numDoc...
hacknation
www/components/vf-ui/FacilityInlineCard.tsx
TypeScript
48d08c2d0709d82d4a6b3413371521c1f7677c99023d3665683bdbb70c79a1de
1
896
> </div> {qualityNum !== null && ( <div className="flex shrink-0 flex-col items-end"> <span className="font-mono text-lg font-bold tabular-nums text-foreground"> {String(qualityNum)}% </span> <span className="text-[10px] text-mute...
hacknation
www/components/vf-ui/FacilityInlineCard.tsx
TypeScript
e0ff229773abe8198941e1e36d96d0183f5e22b4c8ee1398d9dfb5c48de72d01
2
896
} {(specialties?.length ?? 0) > 8 && ( <span className="self-center text-[11px] text-muted-foreground"> +{String((specialties?.length ?? 0) - 8)} more </span> )} </div> </div> </> )} {/* Procedures b...
hacknation
www/components/vf-ui/FacilityInlineCard.tsx
TypeScript
b7540e5d24ba60af2acbeb474140ec5d5cd2f3097d5f4b41800caf6169315e03
3
896
> </div> </div> ); } function MetricCell({ icon: Icon, label, value, }: { icon: typeof Users; label: string; value: number | string; }) { return ( <div className="flex flex-col items-center gap-0.5 py-3"> <Icon className="mb-0.5 size-3.5 text-muted-foreground" /> <span classNa...
hacknation
www/components/vf-ui/FacilityInlineCard.tsx
TypeScript
0fe33ed06ba18e58af4d6003b0380345866a9c5fe35e8fb5785b5bc29c7852cb
4
165
"use client"; import { BotIcon, CheckCircleIcon, ClockIcon, Database, Globe, Map as MapIcon, Stethoscope, } from "lucide-react"; import { useEffect, useState } from "react"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent } from "@/components/ui/card"; import { Collapsible, ...
hacknation
www/components/vf-ui/OrchestratorProgress.tsx
TypeScript
6a3d96346a37be16693a5dbd42c4548aaea2b369c14ec9526e7a9b0e9b268562
0
896
closed]:fade-out-0 data-[state=closed]:slide-out-to-top-2 data-[state=open]:slide-in-from-top-2 outline-hidden data-[state=closed]:animate-out data-[state=open]:animate-in"> <Separator /> <CardContent className="space-y-3 p-3"> {/* Progress bar */} <Progress cla...
hacknation
www/components/vf-ui/OrchestratorProgress.tsx
TypeScript
89d0dbb9237b931cab2ef370c69a1f21bf3c262e7f0064853163fbf4786d23c6
1
452
"use client"; import { CheckCircleIcon, ChevronDownIcon, ClockIcon, WrenchIcon, } from "lucide-react"; import type { ReactNode } from "react"; import { useState } from "react"; import { CodeBlock, CodeBlockActions, CodeBlockContent, CodeBlockCopyButton, CodeBlockHeader, } from "@/components/ai-elemen...
hacknation
www/components/vf-ui/ToolTrace.tsx
TypeScript
b4cb14599257ff37aa2eabc22ac5f0daa4453c2e78488af14de6c7cd87c4a443
0
896
; const handleViewOnMap = (e: React.MouseEvent) => { e.stopPropagation(); if (!result) { return; } if (toolName === "findNearby" && result.facilities) { setMapFacilities(result.facilities); if (result.center) { setMapCenter([result.center.lat, result.center.lng]); s...
hacknation
www/components/vf-ui/ToolTrace.tsx
TypeScript
7c21390e178a03a4877d53a1a5b9b5291c02e79ba372c2cf9bb3cbca3b653b1c
1
896
-3"> {/* Input section */} <div className="space-y-1.5"> <h4 className="text-[10px] font-semibold uppercase tracking-wider text-muted-foreground"> Parameters </h4> {isSqlTool && sqlQuery ? ( <CodeBlock className="text-xs" ...
hacknation
www/components/vf-ui/ToolTrace.tsx
TypeScript
bbbaff9c755861a795672c1e9940b0cf0358b3bf269d71381cf03665519e8c7c
2
392
"use client"; import { useCallback, useMemo } from "react"; import useSWR, { useSWRConfig } from "swr"; import type { UIArtifact } from "@/components/artifact"; export const initialArtifactData: UIArtifact = { documentId: "init", content: "", kind: "text", title: "", status: "idle", isVisible: false, bo...
hacknation
www/hooks/use-artifact.ts
TypeScript
cbddc53fd0c9537dcfbbef6075ea68f564d295e3d5d2ea9b3398ffddd79cdc18
0
497
"use client"; import { useEffect, useState } from "react"; export function useMediaQuery(query: string) { const [value, setValue] = useState(false); useEffect(() => { // Handle initial check and subsequent changes function checkQuery() { const result = window.matchMedia(query); setValue(resul...
hacknation
www/hooks/use-media-query.ts
TypeScript
220ceb29b9054f6a27f0e2d823c2a6d3f65c820b9f9f13c969d19730dce2026c
0
171
"use client"; import { createContext, useContext } from "react"; import type { UseChatHelpers } from "@ai-sdk/react"; import type { ChatMessage } from "@/lib/types"; type ChatActionsContextValue = { sendMessage: UseChatHelpers<ChatMessage>["sendMessage"] | null; }; const ChatActionsContext = createContext<ChatActi...
hacknation
www/lib/chat-actions-context.tsx
TypeScript
68ddfa385609a187fa4d3fe2fa1bc57388e4469e4a401900c90c80ffc654ff69
0
153
import { FirstBentoAnimation } from "@/components/first-bento-animation"; import { FourthBentoAnimation } from "@/components/fourth-bento-animation"; import { SecondBentoAnimation } from "@/components/second-bento-animation"; import { ThirdBentoAnimation } from "@/components/third-bento-animation"; import { FlickeringG...
hacknation
www/lib/config.tsx
TypeScript
86d44a9119b5029fa2366ab3fa39fb743ed08718b4e853b0f137ed933b026336
0
896
.86997 15 7.74175 14.966 7.62845 14.9013L2.37845 11.9013C2.2635 11.8357 2.16795 11.7409 2.10148 11.6265C2.03501 11.5121 2 11.3821 2 11.2498C2 11.1175 2.03501 10.9875 2.10148 10.8731C2.16795 10.7586 2.2635 10.6638 2.37845 10.5983V10.5993Z" /> </svg> ), badge: "Introducing custom automations", title: "M...
hacknation
www/lib/config.tsx
TypeScript
db18b5318d3d2e9bee72b3446095b96b69ea4f2102fc88d6d793ac621bdacbfc
1
896
L10.0049 22.785C10.3086 22.9627 10.6846 22.9627 10.9892 22.785L18.3018 18.5624V21.4859C18.3036 21.5159 18.2895 21.5451 18.266 21.5639L12.2112 25.0599C9.51423 26.6129 6.06995 25.6897 4.51042 22.9965H4.50945ZM2.93302 9.9215C3.59104 8.77841 4.62981 7.90416 5.8669 7.45014C5.8669 7.50182 5.86408 7.59303 5.86408 7.65695V14.5...
hacknation
www/lib/config.tsx
TypeScript
98dc3405aadb7d2f60d4a31f5a97cfb440198597ba93699e3a239e7fc476384a
2
896
4203 10.5077 87.4212 7.45312 83.1555 7.45312C78.8628 7.45312 75.8906 10.5077 75.8906 15.0207C75.8906 19.5337 78.8628 22.5607 83.1555 22.5607C87.4212 22.5607 90.4203 19.5337 90.4203 15.0207ZM80.2663 15.0207C80.2663 12.489 81.3943 11.0581 83.1555 11.0581C84.9171 11.0581 86.0451 12.489 86.0451 15.0207C86.0451 17.5524 84.9...
hacknation
www/lib/config.tsx
TypeScript
34cb9fbef269e544a7af527cb0861e63b8438868359f322ad3a59651333e41fc
3
896
6879C81.76 15.9747 83.4016 17.7786 85.8191 17.7786C87.641 17.7786 89.0845 16.8044 90.203 14.9463L94.9167 17.0895C93.2968 20.2807 89.8833 22.3606 85.6749 22.3606C79.9382 22.3606 76.1315 18.5001 76.1315 12.2945C76.1315 5.47532 80.6054 0.640625 86.9194 0.640625C92.4758 0.640625 95.9754 4.39293 95.9754 10.2378C95.9754 11.2...
hacknation
www/lib/config.tsx
TypeScript
753b848e49b81da17b787f6609f155f212438b5f932aebf41de982e3cb8856b9
4
896
"Company 6", logo: ( <svg width="132" height="21" viewBox="0 0 132 21" fill="none" xmlns="http://www.w3.org/2000/svg" className="dark:fill-white fill-black" > <path d="M62.1915 1.56344L62.1641 1.56944C61.1444...
hacknation
www/lib/config.tsx
TypeScript
d761183b33e0163af7d888967f73fe65d8bbfe8637a027f450f931f07ca193bc
5
896
19.1285 122.629 19.5068 123.512 19.7144L123.539 19.721V19.9432H118.35V10.0431C118.35 8.4656 117.764 7.66482 116.608 7.66482C115.677 7.66482 115.206 8.31107 114.973 8.85663V18.1575C114.973 19.1285 115.258 19.5068 116.141 19.7144L116.168 19.721V19.9432H110.98V9.53993C110.98 8.16998 110.636 7.74353 109.448 7.63811L109.414...
hacknation
www/lib/config.tsx
TypeScript
ae151554a9dff393b69c53380fff14daf8a8c1464e26465bfc66a63ad7c152be
6
896
1071 21.094 63.2958 20.3861 63.2958 18.7401V17.4802Z" /> <path d="M68.2854 20.1116C68.3767 20.0042 68.5061 19.9367 68.6465 19.9234C68.787 19.9102 68.9269 19.9522 69.0369 20.0404C69.9412 20.7245 71.0503 21.0826 72.1834 21.0565C73.3522 21.0565 74.2161 20.6806 74.2161 19.7661C74.2161 18.933 73.423 18.7501 71...
hacknation
www/lib/config.tsx
TypeScript
a4ea5f9fbe443c18db39f6903650aa8aea80598cff87ef6365025b726bb7b7a4
7
896
22.0258 124.689 21.4896V25.9974C124.689 26.1412 124.631 26.279 124.53 26.3807C124.428 26.4823 124.29 26.5394 124.147 26.5394H122.589C122.445 26.5394 122.307 26.4823 122.206 26.3807C122.104 26.279 122.047 26.1412 122.047 25.9974V12.4502C122.046 12.3789 122.06 12.3082 122.087 12.2423C122.114 12.1763 122.154 12.1164 122.2...
hacknation
www/lib/config.tsx
TypeScript
6915758ba3df8990476d2407c85cdf9d807d4b0604f3eebb10436916ce20a429
8
896
28.3833 23.7007 28.0419 23.4946 27.8376L3.43132 7.94007C3.22533 7.73577 2.88109 7.77411 2.73544 8.02431C2.49037 8.44527 2.26532 8.87913 2.06157 9.32463ZM0.88189 14.8466C0.790844 14.7563 0.742401 14.6319 0.750973 14.5045C0.791115 13.9077 0.866419 13.3206 0.974847 12.745C1.03986 12.3998 1.46512 12.2801 1.71546 12.5283L18...
hacknation
www/lib/config.tsx
TypeScript
98fccc66043c5625c401a3719cec95ea1a3b3d6188f5a377a7741c90562710ca
9
896
95.8044 15.2411C95.4653 14.2939 94.9846 13.4779 94.3627 12.7933C93.741 12.0993 92.9921 11.5647 92.1157 11.1896C91.2488 10.8144 90.2832 10.6268 89.2184 10.6268C87.8335 10.6268 86.6087 10.9598 85.5439 11.6257C84.4791 12.2915 83.6454 13.2107 83.0422 14.383C82.4394 15.5553 82.1378 16.8964 82.1378 18.4064C82.1378 19.907 82....
hacknation
www/lib/config.tsx
TypeScript
e6dcee99e26538df218c489afc4d88702cbdef834d265e3cddd1be215b67bb30
10
896
: "Save hours each week with AI-optimized scheduling.", image: "/Device-6.png", }, { id: 2, text: "Reduce scheduling conflicts and double-bookings.", image: "/Device-7.png", }, { id: 3, text: "Improve work-life balance with smart time allocation.", image: "/Devi...
hacknation
www/lib/config.tsx
TypeScript
554a48ffe7df5b4d648b692a397c14aa6e136df632bb1a2514f6ae10a313eb86
11
896
983 0 120.344 1.28763 122.94 3.61671C148.459 26.5711 180.325 41.2118 214.322 45.6008C217.66 46.0312 220.736 47.6398 222.999 50.1383C225.262 52.6369 226.563 55.862 226.67 59.2357C227.947 96.7468 218.612 133.854 199.744 166.267C180.877 198.68 153.248 225.074 120.052 242.398C118.028 243.454 115.779 244.003 113.498 244C111...
hacknation
www/lib/config.tsx
TypeScript
20d14712cbfe9851c74541a947f268e5f429c8837b92b08ce311de35031b5bc9
12
896
matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.01 0" /> <feBlend mode="normal" in2="effect3_dropShadow_2_33" result="effect4_dropShadow_2_33" /> ...
hacknation
www/lib/config.tsx
TypeScript
72f8bdefa670b6947f0014c1d271d725a816bbd75132231456b39fad88fb740c
13
896
result="effect3_innerShadow_2_34" /> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" /> ...
hacknation
www/lib/config.tsx
TypeScript
b61f98ef6e80408741851bd848b070c7b6bade30b40cc2cab82cce22289d49f7
14
896
: "CTO at InnovateTech", img: "https://randomuser.me/api/portraits/men/91.jpg", description: ( <p> The AI-driven analytics from #QuantumInsights have revolutionized our product development cycle. <Highlight> Insights are now more accurate and faster than eve...
hacknation
www/lib/config.tsx
TypeScript
f1c52638a95e98d505bfb290e4305ed42a0a257b3ee4ad0bb388c2538a8ac651
15
896
9", name: "Tom Chen", role: "Director of IT at HealthTech Solutions", img: "https://randomuser.me/api/portraits/men/18.jpg", description: ( <p> Implementing #MediCareAI in our patient care systems has improved patient outcomes significantly. <Highlight> ...
hacknation
www/lib/config.tsx
TypeScript
21f893d293ee43aed6b4b1920346bc0bc51e33e046832da08ef5d2c51d6f3d81
16
896
full access to all features. No credit card is required to start your trial, and you can upgrade or cancel at any time.", }, { id: 6, question: "How does Meridian save me time?", answer: "Meridian automates repetitive tasks, streamlines workflows, and provides quick solutions t...
hacknation
www/lib/config.tsx
TypeScript
74a89c120eef3d5f4d85b1781b957258292eb4ace56157147c5a1e00c3834da9
17
435
import { openai } from "@ai-sdk/openai"; import { embed as aiEmbed } from "ai"; /** * Generate a vector embedding for the given text using gateway-routed OpenAI embeddings. * Returns a 1536-dimension float array for pgvector cosine similarity search. */ export async function embed(text: string): Promise<number[]> {...
hacknation
www/lib/embed.ts
TypeScript
388de046bd0e44978d25b29969447728a682e04ea3c3fac22f747c2d8341926a
0
225
to view this document. Please sign in and try again."; case "bad_request:document": return "The request to create or update the document was invalid. Please check your input and try again."; default: return "Something went wrong. Please try again later."; } } function getStatusCodeByType(type: E...
hacknation
www/lib/errors.ts
TypeScript
3845515f5d08933be41608e138723e5361a7ae6ce89e9434a55017abdb33b623
1
129
/** * Global geocoding utility. * * Resolves a location string (city name or "lat,lng") to coordinates. * Uses a fast local cache (Ghana city coords) first, then falls back * to the free OpenStreetMap Nominatim geocoding API for worldwide coverage. */ import { CITY_COORDS } from "./ghana"; type GeoResult = { ...
hacknation
www/lib/geocode.ts
TypeScript
e566d30a0aaa5d604eb36af443bf05172b82313a465616e8b88b237e6047fa5b
0
866
// Ghana Cities Coordinates Lookup Table (Lat/Lng) export const CITY_COORDS: Record<string, { lat: number; lng: number }> = { Accra: { lat: 5.6037, lng: -0.187 }, Kumasi: { lat: 6.6885, lng: -1.6244 }, Tamale: { lat: 9.4075, lng: -0.8534 }, Takoradi: { lat: 4.8845, lng: -1.7554 }, Sunyani: { lat: 7.3399, lng:...
hacknation
www/lib/ghana.ts
TypeScript
c718039fbaf197df557176e531f103530ec23d23ae892f79868133fbae0c99f3
0
896
: 5.5333, lng: -0.3333 }, Ofankor: { lat: 5.65, lng: -0.2667 }, Pokuase: { lat: 5.6833, lng: -0.2833 }, Amasaman: { lat: 5.7, lng: -0.3 }, Achimota: { lat: 5.6128, lng: -0.2343 }, Legon: { lat: 5.65, lng: -0.1833 }, Adenta: { lat: 5.7167, lng: -0.1667 }, Dansoman: { lat: 5.55, lng: -0.2667 }, "Korle Bu"...
hacknation
www/lib/ghana.ts
TypeScript
79d83d8283f1c26174aed3dc79a25a00d4510af0b999edbac3c99662fd573d1f
1
772
// Medical Knowledge Base for VFMatch AI // Maps procedures to required equipment and defines capacity thresholds. // Covers VF Agent questions 3.1 (completeness assumption), 3.4 (procedure-equipment cross-ref), // 4.2 (ratio checks), 4.6 (subspecialty-infrastructure), and more. export const MEDICAL_KNOWLEDGE = { /*...
hacknation
www/lib/medical-knowledge.ts
TypeScript
326356912896603d1d88c3cc21406f01099f7f1148db0090a86c7ee202095868
0
896
: ["pet scanner", "pet-ct", "positron emission"], fluoroscopy: ["fluoroscopy", "fluoroscope", "c-arm"], // Critical Care / Respiratory ventilator: ["ventilator", "respirator", "icu"], "mechanical ventilation": ["ventilator", "respirator", "icu"], icu: ["ventilator", "monitor", "infusion pump", "def...
hacknation
www/lib/medical-knowledge.ts
TypeScript
eaae88acdc1aa83729ece4880a378f5ca0135180f8b11ab0b155358ba2ec869d
1
896
joint replacement", "arthroscopy", "cast application", ], Neurosurgery: ["craniotomy", "spinal surgery", "brain biopsy", "vp shunt"], Urology: ["lithotripsy", "prostatectomy", "cystoscopy", "circumcision"], Gastroenterology: ["endoscopy", "colonoscopy", "ercp", "liver biopsy"], Oncology:...
hacknation
www/lib/medical-knowledge.ts
TypeScript
b543594fd59594cdfd5736de3840d17f4e86699937053ab332e280258b285d54
2
896
"ecg", "dental chair", "autoclave", "centrifuge", "microscope", "defibrillator", "suction machine", "oxygen concentrator", "nebulizer", "pulse oximeter", ], advanced: [ "ct scanner", "mri", "mammography", "endoscope", "laparosco...
hacknation
www/lib/medical-knowledge.ts
TypeScript
748d752f9d0feb4426a571336df5171045ee84b7975154438e1d8056e18c09dd
3
163
/** * Simple sliding-window rate limiter. * * Uses an in-memory Map so limits are per-process. On serverless platforms * (Vercel) each cold-start gets a fresh Map, which still provides meaningful * brute-force protection. For stricter guarantees, swap to a Redis-backed * implementation (e.g. @upstash/ratelimit). ...
hacknation
www/lib/rate-limit.ts
TypeScript
eba9ec42fb1304ea60376db9ad8555457a1b314d99a622501a54867b512f2790
0
451
export const siteConfig = { name: "Meridian", url: "https://meridian.app", description: "Interactive healthcare facility mapping and AI analysis for Ghana", links: { twitter: "https://twitter.com/meridian", github: "https://github.com/hacknation/meridian", }, }; export type SiteConfig = typeof siteCo...
hacknation
www/lib/site.ts
TypeScript
97870e2f4345cbd82c79527f8d95c0cf245d0cad26b392b4a09e2d383f83e58b
0
81
import type { InferUITool, UIMessage } from "ai"; import { z } from "zod"; import type { ArtifactKind } from "@/components/artifact"; import type { createDocument } from "./ai/tools/create-document"; import type { requestSuggestions } from "./ai/tools/request-suggestions"; import type { updateDocument } from "./ai/tool...
hacknation
www/lib/types.ts
TypeScript
4f3070f85bc209e55327ce275a618452610f3dc1734c51ff452bc577ed1630ca
0
342
import type { AssistantModelMessage, ToolModelMessage, UIMessage, UIMessagePart, } from 'ai'; import { type ClassValue, clsx } from 'clsx'; import * as Color from "color-bits"; import { formatISO } from 'date-fns'; import { twMerge } from 'tailwind-merge'; import type { DBMessage, Document } from '@/lib/db/sche...
hacknation
www/lib/utils.ts
TypeScript
bb71ee0ff35e4445b606a760ebb5f76730eca7766c9b89a3a2609601d83b3afb
0
896
string => { if (typeof window === "undefined") return fallback; if (!cssColor) return fallback; try { // Handle CSS variables if (typeof cssColor === "string" && cssColor.startsWith("var(")) { const element = document.createElement("div"); element.style.color = cssColor; document.body.a...
hacknation
www/lib/utils.ts
TypeScript
9d4fe31f46922d83c3ccef9c373fd7da43390c63cbe4e895cd35e3c7d949ee4f
1
426
"use client"; import { createContext, type ReactNode, useContext, useState } from "react"; type Facility = { id: number; name: string; lat: number; lng: number; type?: string; city?: string; distanceKm?: number; }; type VFContextType = { mapFacilities: Facility[]; setMapFacilities: (facilities: Fac...
hacknation
www/lib/vf-context.tsx
TypeScript
6557a4054f310f538af3393b8fe2b9c8261f0788bd115b6578ae6c8ec2a0625f
0
370
/** * World Bank API client with in-memory TTL cache. * * Fetches national-level indicators for any country and can update * the demographics_countries table with fresh data. * * API docs: https://datahelpdesk.worldbank.org/knowledgebase/articles/898581 */ import { eq } from "drizzle-orm"; import { db } from "....
hacknation
www/lib/world-bank-api.ts
TypeScript
0c12f022b4ba914ede5ef5c0f8de354be410dabf2487b02e8a42ad95739997e3
0
896
--------------------- interface WorldBankDataPoint { date: string; value: number | null; } /** * Fetch the most recent non-null value for a given indicator and country. * Returns `undefined` if the API call fails or no data is available. */ export async function fetchIndicator( countryCode: string, indicat...
hacknation
www/lib/world-bank-api.ts
TypeScript
4c6b68c2c2af3ff2d19b865cf696277d64ff23ff6e07ef18c9ed7c36f36ffd95
1
873
/** * Simple in-memory TTL cache for AI tool results. * * Replaces `@ai-sdk-tools/cache` — wraps tool objects so that repeated * calls with the same input parameters return a cached result within * the TTL window. */ type CachedOptions = { /** Default time-to-live in milliseconds. */ ttl: number; /** Log c...
hacknation
www/lib/ai/cache.ts
TypeScript
45a64ef7a44dfa3807390efe1eebeeaa26ff041387dcd52ac38c30a9c6dbad27
0
490
import type { UserType } from "@/app/(auth)/auth"; type Entitlements = { maxMessagesPerDay: number; }; export const entitlementsByUserType: Record<UserType, Entitlements> = { /* * For users without an account */ guest: { maxMessagesPerDay: 100, }, /* * For users with an account */ regular...
hacknation
www/lib/ai/entitlements.ts
TypeScript
47d1d02e40c2da4fa858cfc4cf9d89b4e9cedeb6d308d96c5e3ffb4a320a5edc
0
96
import { and, desc, eq } from "drizzle-orm"; import { db } from "../db"; import { conversationMessages, workingMemory } from "../db/schema"; // ── Types (previously from @ai-sdk-tools/memory) ──────────────────── export type MemoryScope = "chat" | "user"; export type WorkingMemory = { content: string; updatedAt:...
hacknation
www/lib/ai/memory.ts
TypeScript
942d20864fab07427cab12cfae5a4997c63e2b045f1b1ea518f712a2041de27b
0
896
return; } const id = `${params.scope}:${scopeKey}`; const now = new Date(); await db .insert(workingMemory) .values({ id, scope: params.scope, chatId: params.chatId ?? null, userId: params.userId ?? null, content: params.content, updatedAt: n...
hacknation
www/lib/ai/memory.ts
TypeScript
bec8fdf9b7aa1c1d51980a7778e596ef541d8cfd9ba2923f2024a2db6e085ff3
1
351
import type { LanguageModel } from "ai"; const mockResponses: Record<string, string> = { default: "This is a mock response for testing.", weather: "The weather in San Francisco is sunny and 72°F.", greeting: "Hello! How can I help you today?", }; const mockUsage = { inputTokens: { total: 10, noCache: 10, cach...
hacknation
www/lib/ai/models.mock.ts
TypeScript
5b1e2e91171e80abb980a31145541fbd300d8cfeaa6d1c40aa7ca9de2f20b703
0
896
: "stop", usage: mockUsage, }); controller.close(); }, }), }), } as unknown as LanguageModel; }; const createMockTitleModel = (): LanguageModel => { return { specificationVersion: "v3", provider: "mock", modelId: "mock-title-model", defaultObjectGen...
hacknation
www/lib/ai/models.mock.ts
TypeScript
b46b6eb7be40f8f3e7fa6a1383a86595db029c5e652bc619f605a79cc6314b7e
1
368
import { simulateReadableStream } from "ai"; import { MockLanguageModelV3 } from "ai/test"; import { getResponseChunksByPrompt } from "@/tests/prompts/utils"; const mockUsage = { inputTokens: { total: 10, noCache: 10, cacheRead: 0, cacheWrite: 0 }, outputTokens: { total: 20, text: 20, reasoning: 0 }, }; export co...
hacknation
www/lib/ai/models.test.ts
TypeScript
361c3b09a2c4b86b4a623eff67cf9eecaf73eebc526507184ee17fbe1ef7c652
0
540
// Curated list of top models from Vercel AI Gateway export const DEFAULT_CHAT_MODEL = "google/gemini-3-flash-preview"; export type ChatModel = { id: string; name: string; provider: string; description: string; image: string; }; export const chatModels: ChatModel[] = [ { "id": "anthropic/claude-...
hacknation
www/lib/ai/models.ts
TypeScript
d8c6044c8c312b490b195b86ad418965df843e6a9739cfeedda25107c029fafb
0
896
"anthropic", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fanthropic.png&w=64&q=75", "description": "" }, { "id": "anthropic/claude-3.7-sonnet", ...
hacknation
www/lib/ai/models.ts
TypeScript
3e44c8ef89e6b9d4e1f638c171b4c1a155a27a691b4ade2ee66206934ab489cd
1
896
3-pro-preview", "name": "Gemini 3 Pro Preview", "provider": "google", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fgoogle.png&w=64&q=75", "description...
hacknation
www/lib/ai/models.ts
TypeScript
9bedd138a1f9ac6e214b8d486393b0fcbbd9a715e10ce5ec4f301a9176e69e02
2
896
&w=64&q=75", "description": "" }, { "id": "openai/gpt-5-nano", "name": "Gpt 5 Nano", "provider": "openai", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-...
hacknation
www/lib/ai/models.ts
TypeScript
8bef57546af777180d172aa1aea8c90c0e02efc089fdf2b7899cda01fa094acc
3
896
storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fopenai.png&w=64&q=75", "description": "" }, { "id": "xai/grok-4-fast-non-reasoning", "name": "Grok 4 Fast Non Reasoning", "provider": "xai", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?ur...
hacknation
www/lib/ai/models.ts
TypeScript
3faa6c1cea9d6056466009a1c9a9f1b8284038a86000b109de74858f48f549a9
4
896
/vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fopenai.png&w=64&q=75", "description": "" }, { "id": "alibaba/qwen3-coder", "name": "Qwen3 Coder", "provider": "ali...
hacknation
www/lib/ai/models.ts
TypeScript
c32c76b3e0e613e9954a94a667919153b8a452e9ee774a1ab20e35eda833f6fd
5
896
: "Gpt 4o", "provider": "openai", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fopenai.png&w=64&q=75", "description": "" }, { "id": "google/gem...
hacknation
www/lib/ai/models.ts
TypeScript
8a6057d0a98d775c93bd513f282299631ed99987f19f1d6c310a5ce12ca05967
6
896
"" }, { "id": "google/gemini-2.0-flash", "name": "Gemini 2.0 Flash", "provider": "google", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fgoogle...
hacknation
www/lib/ai/models.ts
TypeScript
116cff9c40b4d858bddfb073709e5328751cef68c665cdea0cc6e88380446a89
7
896
2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fgoogle.png&w=64&q=75", "description": "" }, { "id": "google/gemini-3-pro-image", "name": "Gemini 3 Pro Image", "provider": "google", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt...
hacknation
www/lib/ai/models.ts
TypeScript
b45688711c9acc1740d0de4d407c27b7585393abf20ca1018eb8e2931b1dc1f1
8
896
/vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fdeepseek.png&w=64&q=75", "description": "" }, { "id": "xai/grok-4", "name": "Grok 4", "provider": "xai", "...
hacknation
www/lib/ai/models.ts
TypeScript
34cfde8060eb5167e6fb80f07f0c12ab7a2c7c38e366630232d5a8d7814dc225
9
896
name": "Llama 3.1 8b", "provider": "meta", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fmeta.png&w=64&q=75", "description": "" }, { "id": "zai...
hacknation
www/lib/ai/models.ts
TypeScript
765b2c08903fd9a94f8d7c01c49b593ebecc096c103b955c0f149e193188b7ec
10
896
, { "id": "minimax/minimax-m2.1-lightning", "name": "Minimax M2.1 Lightning", "provider": "minimax", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2F...
hacknation
www/lib/ai/models.ts
TypeScript
d80e00cb50792288a13de2bb0dc60b8594425e7169463c5a2b7161c7c59f0659
11
896
": "" }, { "id": "meta/llama-3.3-70b", "name": "Llama 3.3 70b", "provider": "meta", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fmeta.png&w=64...
hacknation
www/lib/ai/models.ts
TypeScript
85e019c06fa71ccf73c3d698a434cd2f9bb01b37b00e6418f5c7b2061f82c13b
12
896
Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Falibaba%20cloud.png&w=64&q=75", "description": "" }, { "id": "openai/o3-mini", "name": "O3 Mini", "provider": "openai", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.ver...
hacknation
www/lib/ai/models.ts
TypeScript
15e8b324336bd2e13a900af765182972e07a9e1567a4403918a3deb1faf7b18b
13
896
_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fxai.png&w=64&q=75", "description": "" }, { "id": "alibaba/qwen3-coder-30b-a3b", "name": "Qwen3 Coder 30b A3b", "provider": "alibaba", "image"...
hacknation
www/lib/ai/models.ts
TypeScript
2047fc86ae28a37325c04120ccbc8d0bc910e343ed96b3721fdadd162c25d457
14
896
"image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fmistral.png&w=64&q=75", "description": "" }, { "id": "nvidia/nemotron-nano-12b-v2-vl", "name": "Nemotron ...
hacknation
www/lib/ai/models.ts
TypeScript
8ff134b93b0597ab0b37fa364dbe0a3ade87877f547097044f40af66c1e7868a
15
896
"description": "" }, { "id": "zai/glm-4.6v-flash", "name": "Glm 4.6v Flash", "provider": "zai", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fz...
hacknation
www/lib/ai/models.ts
TypeScript
92f8eddd7781763f78419f7077390ebaf6254c44ec0b3bc7493830745392257c
16
896
%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Fmistral.png&w=64&q=75", "description": "" }, { "id": "meta/llama-3.2-3b", "name": "Llama 3.2 3b", "provider": "meta", "image": "https://vercel.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.p...
hacknation
www/lib/ai/models.ts
TypeScript
ef7a1895c5a7a4a234b2176f7872079eb07c455477d72b89393fa5851c9e9f07
17
896
.com/vc-ap-vercel-marketing/_next/image?url=https%3A%2F%2F7nyt0uhk7sse4zvn.public.blob.vercel-storage.com%2Fdocs-assets%2Fstatic%2Fdocs%2Fai-gateway%2Flogos%2Falibaba%20cloud.png&w=64&q=75", "description": "" }, { "id": "mistral/ministral-14b", "name": "Ministral 14b", "provider"...
hacknation
www/lib/ai/models.ts
TypeScript
29a7e715d4300a0487e6bd65a32e718d2d5b852a9a207243ada2f0e9bd0132e9
18
896