File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
MyApp.ServiceInterface/Data Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -324,10 +324,10 @@ public List<string> GetAnswerModelUsersFor(string? userName)
324324 models . RemoveAll ( x => x is "claude-3-haiku" or "claude-3-sonnet" ) ;
325325 if ( models . Contains ( "claude-3-sonnet" ) )
326326 models . RemoveAll ( x => x is "claude-3-haiku" ) ;
327- if ( models . Contains ( "gemini-pro-1.5" ) )
328- models . RemoveAll ( x => x is "gemini-flash" or "gemini-pro" ) ;
329- if ( models . Contains ( "gemini-flash" ) )
330- models . RemoveAll ( x => x is "gemini-pro" ) ;
327+ // if (models.Contains("gemini-pro-1.5"))
328+ // models.RemoveAll(x => x is "gemini-flash" or "gemini-pro");
329+ // if (models.Contains("gemini-flash"))
330+ // models.RemoveAll(x => x is "gemini-pro");
331331 return models ;
332332 }
333333
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ public async Task Can_write_to_R2()
5959 BucketName = "stackoverflow-shootout" ,
6060 Key = "test.txt" ,
6161 ContentBody = "test" ,
62- DisablePayloadSigning = true ,
62+ DisablePayloadSigning = false ,
6363 } ;
6464
65- s3 . PutObject ( request ) ;
65+ // s3.PutObject(request);
6666
67- // await s3.PutObjectAsync(request);
67+ await s3 . PutObjectAsync ( request ) ;
6868
6969 // await r2.WriteFileAsync("/test.txt", "test");
7070
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ await EnsureUserAsync(new ApplicationUser
140140 DisplayName = "Phi 4 14B" ,
141141 EmailConfirmed = true ,
142142 ProfilePath = "/profiles/ph/phi4/phi4.svg" ,
143- Model = "phi4" ,
143+ Model = "phi4:14b " ,
144144 } , "p@55wOrd" ) ;
145145
146146 await EnsureUserAsync ( new ApplicationUser
@@ -490,7 +490,7 @@ await EnsureUserAsync(new ApplicationUser
490490 DisplayName = "Gemini Pro 2.5" ,
491491 EmailConfirmed = true ,
492492 ProfilePath = "/profiles/ge/gemini-pro/gemini-pro.svg" ,
493- Model = "gemini-pro-2.5 " ,
493+ Model = "gemini-pro" ,
494494 } , "p@55wOrd" ) ;
495495
496496 await EnsureUserAsync ( new ApplicationUser
You can’t perform that action at this time.
0 commit comments