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)
324
324
models . RemoveAll ( x => x is "claude-3-haiku" or "claude-3-sonnet" ) ;
325
325
if ( models . Contains ( "claude-3-sonnet" ) )
326
326
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");
331
331
return models ;
332
332
}
333
333
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ public async Task Can_write_to_R2()
59
59
BucketName = "stackoverflow-shootout" ,
60
60
Key = "test.txt" ,
61
61
ContentBody = "test" ,
62
- DisablePayloadSigning = true ,
62
+ DisablePayloadSigning = false ,
63
63
} ;
64
64
65
- s3 . PutObject ( request ) ;
65
+ // s3.PutObject(request);
66
66
67
- // await s3.PutObjectAsync(request);
67
+ await s3 . PutObjectAsync ( request ) ;
68
68
69
69
// await r2.WriteFileAsync("/test.txt", "test");
70
70
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ await EnsureUserAsync(new ApplicationUser
140
140
DisplayName = "Phi 4 14B" ,
141
141
EmailConfirmed = true ,
142
142
ProfilePath = "/profiles/ph/phi4/phi4.svg" ,
143
- Model = "phi4" ,
143
+ Model = "phi4:14b " ,
144
144
} , "p@55wOrd" ) ;
145
145
146
146
await EnsureUserAsync ( new ApplicationUser
@@ -490,7 +490,7 @@ await EnsureUserAsync(new ApplicationUser
490
490
DisplayName = "Gemini Pro 2.5" ,
491
491
EmailConfirmed = true ,
492
492
ProfilePath = "/profiles/ge/gemini-pro/gemini-pro.svg" ,
493
- Model = "gemini-pro-2.5 " ,
493
+ Model = "gemini-pro" ,
494
494
} , "p@55wOrd" ) ;
495
495
496
496
await EnsureUserAsync ( new ApplicationUser
You can’t perform that action at this time.
0 commit comments