File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ public class AppConfig
1212 public string AppDataPath { get ; set ; } = "App_Data" ;
1313 public string ArtifactsPath { get ; set ; } = "App_Data/artifacts" ;
1414 public string FilesPath { get ; set ; } = "App_Data/files" ;
15- public string AssetsBaseUrl { get ; set ; } = "https://localhost:5001" ;
1615 public string VisualLanguageModel { get ; set ; } = "qwen2.5vl:7b" ;
1716 public string ChatLanguageModel { get ; set ; }
1817 public string ? GitPagesBaseUrl { get ; set ; }
Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ public void Configure(IWebHostBuilder builder) => builder
3131 var filesPath = Environment . GetEnvironmentVariable ( "AI_FILES_PATH" ) ;
3232 if ( filesPath != null )
3333 appConfig . FilesPath = filesPath ;
34- var assetsBaseUrl = Environment . GetEnvironmentVariable ( "ASSETS_BASE_URL" ) ;
35- if ( assetsBaseUrl != null )
36- appConfig . AssetsBaseUrl = assetsBaseUrl ;
3734
3835 appConfig . BunExePath ??= Environment . GetEnvironmentVariable ( "BUN_EXE_PATH" )
3936 ?? ProcessUtils . FindExePath ( "bun" ) ;
Original file line number Diff line number Diff line change 2323 "AppDataPath" : " ../App_Data" ,
2424 "ArtifactsPath" : " ../App_Data/artifacts" ,
2525 "FilesPath" : " ../App_Data/files" ,
26- "AssetsBaseUrl" : " https://ai-server-cdn.diffusion.works" ,
2726 "VisualLanguageModel" : " qwen2.5vl:7b" ,
2827 "ChatLanguageModel" : " mistral-small3.2:24b" ,
2928 "DefaultUserId" : " 5B3DF8CA-6AB3-4BEE-AAFC-8FB0C8DF349D" ,
You can’t perform that action at this time.
0 commit comments