Skip to content

Commit

Permalink
New ecosystem cards (#101)
Browse files Browse the repository at this point in the history
add: project and update opus
  • Loading branch information
dharamveergit authored Jan 15, 2025
1 parent 5ccbe03 commit 045cb65
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/pricing-page/gpus/sort.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { Fragment, useEffect, useState } from "react";
import { Listbox, Transition } from "@headlessui/react";
import { CheckIcon, ChevronDownIcon } from "@heroicons/react/20/solid";
import { clsx as classNames } from "clsx";
import type { Gpus } from "./gpu-table";
import { Fragment, useEffect, useState } from "react";
import type { Filters } from "./filter";
import type { Gpus } from "./gpu-table";
const publishingOptions = [
{ title: "Availability" },
{ title: "Lowest Price" },
{ title: "Highest Price" },
];

export const onTop = (res?: Gpus) => {
const onTop = ["h100", "a100"];
const onTop = ["h100", "h200", "a100"];
const filtered = res?.models
?.filter((model) => onTop?.includes(model?.model))
.sort((a, b) => onTop.indexOf(a?.model) - onTop.indexOf(b?.model));
Expand Down
Binary file added src/content/Ecosystem_Page/bagel/banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/content/Ecosystem_Page/bagel/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
projectTitle: Bagel
projectImage: "./banner.jpg"
pubDate: "2015-12-15"

tags:
- AI & ML

category: deployed_on_akash

description: Bagel is an AI & Cryptography Research Lab. Making Open Source AI Monetizable leveraging novel cryptography.
showcase: true
ctaButton:
label: View Project
link: "https://www.bagel.net/"
enable: true

websiteLink: "https://www.bagel.net/"
twitterLink: "https://x.com/BagelOpenAI"
featured: true
---
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/content/Ecosystem_Page/levangie-laboratories/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
projectTitle: Levangie Laboratories
projectImage: "./banner.jpg"
pubDate: "2015-12-15"

tags:
- AI & ML

category: deployed_on_akash

description: Levangie Laboratories is shaping the next generation of adaptive AI systems. We are building agents that learn, evolve, and collaborate in real time, transforming industries and redefining what's possible with AI.
showcase: true
ctaButton:
label: View Project
link: "https://www.levangielaboratories.com/"
enable: true

websiteLink: "https://www.levangielaboratories.com/"
twitterLink: "https://x.com/blevlabs"
featured: true
---
2 changes: 2 additions & 0 deletions src/utils/sequences/deployedOnAkash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const deployedOnAkash = [
"Akash Chat API",
"Akash Chat",
"Auki",
"Bagel",
"Levangie Laboratories",
];

export function getPriorityIndex(title: any) {
Expand Down

0 comments on commit 045cb65

Please sign in to comment.