AI Image Studio, AI podcast Maker, AI product Marketing

This commit is contained in:
ajaysi
2025-11-28 14:33:52 +05:30
parent 77d7c0cde6
commit 49e2131715
122 changed files with 22311 additions and 4331 deletions

View File

@@ -15,7 +15,7 @@ export interface ContentAsset {
description?: string;
prompt?: string;
tags: string[];
metadata: Record<string, any>;
asset_metadata: Record<string, any>;
provider?: string;
model?: string;
cost: number;
@@ -44,7 +44,7 @@ export interface AssetListResponse {
offset: number;
}
const API_BASE_URL = import.meta.env.VITE_API_BASE_URL || 'http://localhost:8000';
const API_BASE_URL = process.env.REACT_APP_API_BASE_URL || 'http://localhost:8000';
export const useContentAssets = (filters: AssetFilters = {}) => {
const { getToken } = useAuth();