-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #343 from HoomanDgtl/main
update: ecosystem apps order
- Loading branch information
Showing
3 changed files
with
70 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export const deployedOnAkash = [ | ||
"Brev.dev", | ||
"Venice.ai", | ||
"Prime Intellect", | ||
"University of Texas at Austin", | ||
"Nous Research", | ||
"Flock.io", | ||
"Akash Chat API", | ||
"Akash Chat", | ||
"Auki", | ||
]; | ||
|
||
export function getPriorityIndex(title: any) { | ||
const index = deployedOnAkash.indexOf(title); | ||
return index === -1 ? deployedOnAkash.length : index; | ||
} |