This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "agents": { | |
| "sisyphus": { | |
| "model": "google/gemini-3.1-pro-preview" | |
| }, | |
| "Hephaestus": { | |
| "model": "google/gemini-3.1-pro-preview" | |
| }, | |
| "prometheus": { | |
| "model": "google/gemini-3.1-pro-preview" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| steps: | |
| - task: Bash@3 | |
| displayName: "Install Azurite" | |
| inputs: | |
| targetType: 'inline' | |
| script: 'sudo npm install -g azurite@2.7.1' | |
| - task: Bash@3 | |
| displayName: "Run Azurite" | |
| inputs: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ExmapleTestsWithEmulatedStorage | |
| { | |
| private const string ConnectionString = "UseDevelopmentStorage=true"; | |
| private const string TableName = "testTable"; | |
| private CloudStorageAccount _storageAccount; | |
| private CloudTable _cloudTable; | |
| [OneTimeSetUp] | |
| public void OneTimeSetUp() |