Artartaid/inference-api
0
1import type { Model } from "./type";2 3export const TEXT_GENERATIONS: Array<Model> = [4 {5 id: "meta-llama/Llama-2-7b-chat-hf",6 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/646cf8084eefb026fb8fd8bc/oCTqufkdTkjyGodsx1vo1.png?w=200&h=200&f=face",7 },8 {9 id: "HuggingFaceH4/zephyr-7b-beta",10 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/5f0c746619cb630495b814fd/j26aNEdiOgptZxJ6akGCC.png?w=200&h=200&f=face",11 },12 {13 id: "mistralai/Mistral-7B-v0.1",14 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/62dac1c7a8ead43d20e3e17a/wrLf5yaGC6ng4XME70w6Z.png?w=200&h=200&f=face",15 },16];17 18export const IMAGE_GENERATIONS: Array<Model> = [19 {20 id: "stabilityai/stable-diffusion-xl-base-1.0",21 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/643feeb67bc3fbde1385cc25/7vmYr2XwVcPtkLzac_jxQ.png?w=200&h=200&f=face"22 },23]24 25export const TRANSLATION_MODELS: Array<Model> = [26 {27 id: "Helsinki-NLP/opus-mt-fr-en",28 label: "French to English",29 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/1588345309691-5dd96eb166059660ed1ee413.png?w=200&h=200&f=face",30 }, {31 id: "Helsinki-NLP/opus-mt-en-fr",32 label: "English to French",33 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/1588345309691-5dd96eb166059660ed1ee413.png?w=200&h=200&f=face",34 }, {35 id: "Helsinki-NLP/opus-mt-de-en",36 label: "German to English",37 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/1588345309691-5dd96eb166059660ed1ee413.png?w=200&h=200&f=face",38 }, {39 id: "Helsinki-NLP/opus-mt-en-de",40 label: "English to German",41 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/1588345309691-5dd96eb166059660ed1ee413.png?w=200&h=200&f=face",42 }, {43 id: "Helsinki-NLP/opus-mt-es-en",44 label: "Spanish to English",45 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/1588345309691-5dd96eb166059660ed1ee413.png?w=200&h=200&f=face",46 }, {47 id: "Helsinki-NLP/opus-mt-en-es",48 label: "English to Spanish",49 logo: "https://aeiljuispo.cloudimg.io/v7/https://cdn-uploads.huggingface.co/production/uploads/1588345309691-5dd96eb166059660ed1ee413.png?w=200&h=200&f=face",50 }51]