Skip to content

Commit

Permalink
add parameter to specify API version
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenkirstaetter committed Feb 3, 2025
1 parent 8da8c6d commit 796f1e3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Mscc.GenerativeAI/BaseModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public abstract class BaseModel : BaseLogger

protected string _model;

Check warning on line 30 in src/Mscc.GenerativeAI/BaseModel.cs

View workflow job for this annotation

GitHub Actions / Build, pack and push to GitHub Package Registry (GPR) (ubuntu-latest, 9.x)

Identifier '_model' is not CLS-compliant
protected string? _apiKey;

Check warning on line 31 in src/Mscc.GenerativeAI/BaseModel.cs

View workflow job for this annotation

GitHub Actions / Build, pack and push to GitHub Package Registry (GPR) (ubuntu-latest, 9.x)

Identifier '_apiKey' is not CLS-compliant
protected string _apiVersion;

Check warning on line 32 in src/Mscc.GenerativeAI/BaseModel.cs

View workflow job for this annotation

GitHub Actions / Build, pack and push to GitHub Package Registry (GPR) (ubuntu-latest, 9.x)

Identifier '_apiVersion' is not CLS-compliant
protected string? _accessToken;

Check warning on line 33 in src/Mscc.GenerativeAI/BaseModel.cs

View workflow job for this annotation

GitHub Actions / Build, pack and push to GitHub Package Registry (GPR) (ubuntu-latest, 9.x)

Identifier '_accessToken' is not CLS-compliant
protected string? _projectId;

Check warning on line 34 in src/Mscc.GenerativeAI/BaseModel.cs

View workflow job for this annotation

GitHub Actions / Build, pack and push to GitHub Package Registry (GPR) (ubuntu-latest, 9.x)

Identifier '_projectId' is not CLS-compliant
protected string _region = "us-central1";

Check warning on line 35 in src/Mscc.GenerativeAI/BaseModel.cs

View workflow job for this annotation

GitHub Actions / Build, pack and push to GitHub Package Registry (GPR) (ubuntu-latest, 9.x)

Identifier '_region' is not CLS-compliant
Expand Down

0 comments on commit 796f1e3

Please sign in to comment.