Skip to content

Commit

Permalink
Merge pull request #459 from HoomanDgtl/evaeai
Browse files Browse the repository at this point in the history
add: EaveAI
  • Loading branch information
HoomanDgtl authored Dec 17, 2024
2 parents 9504d8d + 6f684b5 commit 8c5572e
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 8 deletions.
Binary file added src/content/Ecosystem_Page/eaveai/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/eaveai/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
projectTitle: EaveAI
projectImage: "./banner.jpg"
pubDate: "2016-12-17"

tags:
- AI & ML

category: deployed_on_akash

description: EaveAI is a powerful data hub that unlocks the full potential of X Spaces by aggregating and providing seamless access to valuable insights. By integrating Akash compute, EaveAI enables fast and reliable collection and delivery of Space-related data, empowering users to tap into a wealth of information.
showcase: true
ctaButton:
label: View Project
link: "https://linktr.ee/eaveai"
enable: true

websiteLink: "https://linktr.ee/eaveai"
twitterLink: "http://x.com/eaveai"
featured: true
---
34 changes: 26 additions & 8 deletions src/pages/ecosystem/deployed-on-akash/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,39 @@
import { getCollection } from "astro:content";
import EcosystemPage from "@/components/ecosystem-pages/ecosystem-page.astro";
import { getPriorityIndex } from "@/utils/sequences/deployedOnAkash";
import {
deployedOnAkash,
getPriorityIndex,
} from "@/utils/sequences/deployedOnAkash";
const projects = (await getCollection("Ecosystem_Page"))
.filter((project) => project.data.category === "deployed_on_akash")
const priorityProjects = (await getCollection("Ecosystem_Page"))
.filter(
(project) =>
project.data.category === "deployed_on_akash" &&
getPriorityIndex(project.data.projectTitle) < deployedOnAkash.length,
)
.sort((a, b) => {
const dateA = new Date(a.data.pubDate);
const dateB = new Date(b.data.pubDate);
return (
dateB.getTime() - dateA.getTime() &&
getPriorityIndex(a.data.projectTitle) -
getPriorityIndex(b.data.projectTitle)
getPriorityIndex(b.data.projectTitle)
);
});
const nonPriorityProjects = (await getCollection("Ecosystem_Page"))
.filter(
(project) =>
project.data.category === "deployed_on_akash" &&
getPriorityIndex(project.data.projectTitle) === deployedOnAkash.length,
)
.sort((a, b) => {
const dateA = new Date(a.data.pubDate);
const dateB = new Date(b.data.pubDate);
return dateB.getTime() - dateA.getTime();
});
const projects = [...priorityProjects, ...nonPriorityProjects];
const tags: string[] = [];
projects.forEach((project) => {
Expand Down

0 comments on commit 8c5572e

Please sign in to comment.