-
-
-
-
+
)
}
\ No newline at end of file
diff --git a/agenthub/app/agents/type.ts b/agenthub/app/agents/type.ts
index 15dac194..a3fb3682 100644
--- a/agenthub/app/agents/type.ts
+++ b/agenthub/app/agents/type.ts
@@ -8,9 +8,9 @@ export interface DatasetItem {
favorites: string
}
-export type DatasetsTabItem = 'Recommended' | 'Writing' | 'Entertainment' | 'Programming' | 'Tasks' | 'Sizes' | 'Sub-tasks' | 'Languages' | 'Licenses' | 'Other';
+export type DatasetsTabItem = 'Recommended' | 'Writing' | 'Entertainment' | 'Programming' | 'Tasks' | 'Sizes' | 'Sub-tasks' | 'Languages' | 'Licenses' | 'Other' | 'Academic' | 'Creative' | 'Lifestyle' | 'Entertainment';
-export type AgentTabItem = 'Tasks' | 'Sizes' | 'Sub-tasks' | 'Languages' | 'Licenses' | 'Other'
+export type AgentTabItem = 'Tasks' | 'Sizes' | 'Sub-tasks' | 'Languages' | 'Licenses' | 'Other' | 'Academic' | 'Creative' | 'Lifestyle' | 'Entertainment';
export interface AgentItem {
diff --git a/agenthub/components/homepage/Products.tsx b/agenthub/components/homepage/Products.tsx
index b0093376..14f93730 100644
--- a/agenthub/components/homepage/Products.tsx
+++ b/agenthub/components/homepage/Products.tsx
@@ -18,7 +18,7 @@ const Examples = [
author_url: 'https://github.com/vercel',
author_img: 'https://avatars.githubusercontent.com/u/14985020',
repo_name: 'vercel/nextjs-subscription-payments',
- repo_url: 'https://my.aios.foundation/agents',
+ repo_url: 'http://localhost:3000/agents',
vercel_deploy_url:
'https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fnextjs-subscription-payments&env=NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY,STRIPE_SECRET_KEY&envDescription=Enter%20your%20Stripe%20API%20keys.&envLink=https%3A%2F%2Fdashboard.stripe.com%2Fapikeys&project-name=nextjs-subscription-payments&repository-name=nextjs-subscription-payments&integration-ids=oac_VqOgBHqhEoFTPzGkPd7L0iH6&external-id=https%3A%2F%2Fgithub.com%2Fvercel%2Fnextjs-subscription-payments%2Ftree%2Fmain',
demo_url: 'https://subscription-payments.vercel.app/',
diff --git a/agenthub/lib/env.ts b/agenthub/lib/env.ts
index 1376dba9..010f719e 100644
--- a/agenthub/lib/env.ts
+++ b/agenthub/lib/env.ts
@@ -1,6 +1,10 @@
export const inDevEnvironment = !!process && process.env.NODE_ENV === 'development';
// export const serverUrl = inDevEnvironment ? 'http://localhost:8000' : 'https://myapp-y5z35kuonq-uk.a.run.app'
-export const baseUrl = inDevEnvironment ? 'http://localhost:3000' : 'https://my.aios.foundation'
+export const baseUrl = process.env.NODE_ENV === 'development'
+ ? 'http://localhost:3000'
+ : 'https://my.aios.foundation';
// export const serverUrl = inDevEnvironment ? 'http://localhost:8000' : 'http://35.232.56.61:8000'
-export const serverUrl = 'http://35.232.56.61:8000';
+export const serverUrl = process.env.NODE_ENV === 'development'
+ ? 'http://localhost:8000'
+ : 'https://api.aios.chat';