├── .aitests └── config ├── .azure └── pipelines │ ├── build.yaml │ ├── docker_proxy_setup.yaml │ ├── nginx-docker-build-and-push.yaml │ ├── scripts │ ├── set-variables.sh │ └── upload-file.sh │ ├── sign-dll-exe.yaml │ ├── sign-nuget.yaml │ ├── test_execute_and_report.yaml │ └── test_setup.yaml ├── .devcontainer └── devcontainer.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── compliance │ └── inventory.yml └── workflows │ └── build-package.yaml ├── .gitignore ├── .sscignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.txt ├── NuGet.config ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── ai-cli.sln ├── dockerfiles ├── debian10.Dockerfile ├── debian11.Dockerfile ├── debian12.Dockerfile ├── ubuntu2004.Dockerfile └── ubuntu2204.Dockerfile ├── ideas ├── Prioritized user needs (Ignite) – Code First - comments.md ├── Prioritized user needs (Ignite) – Code First.md ├── app_func.py ├── asst-v2-py │ ├── asst-create.py │ ├── asst-delete.py │ ├── asst-get.py │ ├── asst-list.py │ ├── count-lines.py │ ├── diagram-equation.py │ ├── file-create.py │ ├── file-get.py │ ├── function-calling.py │ ├── message-create.py │ ├── run-create.py │ ├── search-files.py │ └── thread-create.py ├── azd-imposter │ └── azd.cpp ├── azure-ai-cli-installation-spec.md ├── code-generation-using-text-template-transformation-toolkit.md ├── cool-helper-function-scenarios │ ├── HelperFunctionClass.cs │ ├── HelperFunctionsProject.csproj │ ├── NutritionHelperFunctions.cs │ ├── PokemonHelperFunctions.cs │ ├── QRCodeHelper.cs │ ├── WolframAlphaHelper.cs │ ├── prompt.md │ ├── scenario-github-octokit.md │ ├── scenario-pokeapi.md │ ├── scenario-qrcode.md │ ├── scenario-run-stuff.md │ ├── scenario-wolfram-calculus.md │ └── system.md ├── flow-hero-1.0-chat-scenario.md ├── flow-hero-2.0-chat-with-my-data-scenario.md ├── flow-sub-1.0-scenario-task-subscription.md ├── flow-sub-1.1-ai-select-or-create-resource.md ├── flow-sub-1.2-ai-select-or-create-deployment.md ├── flow-sub-1.3-create-resource-group.md ├── flow-sub-1.4-create-ai-resource.md ├── flow-sub-1.5-create-ai-deployment.md ├── flow-sub-pick-region.md ├── gpt-keyword │ ├── OpenAI │ │ ├── FunctionCallContext.cs │ │ ├── FunctionFactory.cs │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ ├── OpenAIChatCompletionsCustomFunctions.cs │ │ └── OpenAIChatCompletionsFunctionsStreamingClass.cs │ ├── Program.cs │ ├── gpt-keyword.csproj │ ├── keyword.table │ └── quincy-keyword.table ├── junit-conversation.md ├── new-ai-init-from-leah-spec.md ├── notes │ ├── ai_init_flow.md │ ├── ai_init_ui_flow_current.md │ └── ai_init_ui_flow_proposed.md ├── other.md ├── planning-tasks.md ├── porter │ ├── 1-instructions.md │ ├── 2-instructions-show-usage.md │ ├── 3-instructions-try-it-fix-it.md │ ├── calculator_helper_functions.py │ ├── custom_funcs.py │ ├── date_time_helpers.py │ ├── example_usage.py │ ├── file_helper_functions.py │ ├── helper_function_description_attribute.py │ ├── helper_function_factory.py │ ├── helper_function_factory_extensions.py │ ├── helper_function_factory_usage.py │ └── helper_function_parameter_description_attribute.py ├── product-info │ ├── eval-answer-system-prompt.md │ ├── eval-answer-user-prompt.md │ ├── eval-questions.yaml │ ├── evals.yaml │ ├── product_info_1.md │ ├── product_info_10.md │ ├── product_info_11.md │ ├── product_info_12.md │ ├── product_info_13.md │ ├── product_info_14.md │ ├── product_info_15.md │ ├── product_info_16.md │ ├── product_info_17.md │ ├── product_info_18.md │ ├── product_info_19.md │ ├── product_info_2.md │ ├── product_info_20.md │ ├── product_info_3.md │ ├── product_info_4.md │ ├── product_info_5.md │ ├── product_info_6.md │ ├── product_info_7.md │ ├── product_info_8.md │ └── product_info_9.md ├── speech-templates-todo.md ├── template-engine │ ├── ai.dev.new.list.output.txt │ ├── refactor.yaml │ ├── template-info.md │ └── template-refactoring.md └── template-generator │ ├── input-sample │ └── ChatbotSample.java │ ├── prompt.md │ └── system.prompt.md ├── media ├── ai-cli-help.png └── ai-cli-init.png ├── requirements.txt ├── scripts ├── ADOCheckItemExists.ps1 ├── ADOCreateFeature.ps1 ├── ADOGetADOLinkNumber.ps1 ├── ADOUpdateFeature.ps1 ├── GithubUpdateIssue.ps1 ├── InstallAzureAICLI-test.sh ├── InstallAzureAICLIDeb-UpdateVersion.sh └── InstallAzureAICLIDeb.sh ├── src ├── ai │ ├── .x │ │ ├── config │ │ │ ├── ai.defaults │ │ │ ├── assistant.id │ │ │ ├── chat.default.assistant │ │ │ ├── chat.default.config │ │ │ ├── chat.default.connection │ │ │ ├── chat.default.model │ │ │ ├── chat.default.output │ │ │ ├── chat.default.search.connection │ │ │ ├── chat.output.all.standard │ │ │ ├── chat.search.endpoint │ │ │ ├── chat.search.index │ │ │ ├── chat.search.key │ │ │ ├── code.default.config │ │ │ ├── code.default.connection │ │ │ ├── code.default.output │ │ │ ├── code.output.all.standard │ │ │ ├── complete.default.config │ │ │ ├── complete.default.connection │ │ │ ├── complete.default.output │ │ │ ├── complete.output.all.standard │ │ │ ├── connection │ │ │ ├── connection.from.endpoint │ │ │ ├── connection.from.host │ │ │ ├── connection.from.region │ │ │ ├── default.deployment │ │ │ ├── default.log │ │ │ ├── default.path │ │ │ ├── defaults │ │ │ ├── deployment │ │ │ ├── dev.default.config │ │ │ ├── embedding.deployment │ │ │ ├── embedding.endpoint │ │ │ ├── embedding.key │ │ │ ├── endpoint │ │ │ ├── endpoint.type │ │ │ ├── eval.default.config │ │ │ ├── eval.default.connection │ │ │ ├── eval.default.output │ │ │ ├── eval.output.all.standard │ │ │ ├── fiddler │ │ │ ├── host │ │ │ ├── init.default.config │ │ │ ├── init.default.output │ │ │ ├── input.path │ │ │ ├── key │ │ │ ├── language.default.config │ │ │ ├── language.default.connection │ │ │ ├── language.default.output │ │ │ ├── language.output.all.standard │ │ │ ├── log.pid │ │ │ ├── log.time │ │ │ ├── log.time.pid │ │ │ ├── my.defaults │ │ │ ├── none │ │ │ ├── output │ │ │ ├── output.all.standard │ │ │ ├── region │ │ │ ├── run.default.config │ │ │ ├── samples.default.config │ │ │ ├── samples.default.connection │ │ │ ├── samples.default.output │ │ │ ├── samples.output.all.standard │ │ │ ├── search.default.config │ │ │ ├── search.default.connection │ │ │ ├── search.default.embedding │ │ │ ├── search.default.output │ │ │ ├── search.index.name │ │ │ ├── search.output.all.standard │ │ │ ├── service.default.config │ │ │ ├── service.default.connection │ │ │ ├── service.default.output │ │ │ ├── service.output.all.standard │ │ │ ├── speech.default.config │ │ │ ├── speech.default.connection │ │ │ ├── speech.default.output │ │ │ ├── speech.output.all.standard │ │ │ ├── subscription │ │ │ ├── telemetry.config.json │ │ │ ├── test.default.config │ │ │ ├── tool.default.config │ │ │ ├── tool.default.connection │ │ │ ├── tool.default.output │ │ │ ├── tool.output.all.standard │ │ │ ├── vector.store.id │ │ │ ├── vision.default.config │ │ │ ├── vision.default.connection │ │ │ ├── vision.default.output │ │ │ ├── vision.output.all.standard │ │ │ ├── wizard.default.config │ │ │ ├── wizard.default.connection │ │ │ ├── wizard.default.output │ │ │ └── wizard.output.all.standard │ │ ├── help │ │ │ ├── chat │ │ │ ├── chat.assistant │ │ │ ├── chat.assistant.create │ │ │ ├── chat.assistant.delete │ │ │ ├── chat.assistant.examples │ │ │ ├── chat.assistant.file │ │ │ ├── chat.assistant.file.delete │ │ │ ├── chat.assistant.file.list │ │ │ ├── chat.assistant.file.upload │ │ │ ├── chat.assistant.get │ │ │ ├── chat.assistant.id │ │ │ ├── chat.assistant.list │ │ │ ├── chat.assistant.update │ │ │ ├── chat.assistant.vector-store │ │ │ ├── chat.assistant.vector-store.create │ │ │ ├── chat.assistant.vector-store.delete │ │ │ ├── chat.assistant.vector-store.examples │ │ │ ├── chat.assistant.vector-store.get │ │ │ ├── chat.assistant.vector-store.list │ │ │ ├── chat.assistant.vector-store.update │ │ │ ├── chat.built-in.helper.functions │ │ │ ├── chat.custom.helper.function.examples │ │ │ ├── chat.custom.helper.functions │ │ │ ├── chat.examples │ │ │ ├── code │ │ │ ├── config │ │ │ ├── config.add │ │ │ ├── config.advanced │ │ │ ├── config.clear │ │ │ ├── config.command │ │ │ ├── config.examples │ │ │ ├── config.find │ │ │ ├── config.hive │ │ │ ├── config.region │ │ │ ├── config.scope │ │ │ ├── config.set │ │ │ ├── dev │ │ │ ├── dev.new │ │ │ ├── dev.shell │ │ │ ├── docs │ │ │ ├── documentation │ │ │ ├── endpoint │ │ │ ├── eval │ │ │ ├── examples │ │ │ ├── get.started │ │ │ ├── help │ │ │ ├── hive │ │ │ ├── include.ai.ascii.logo │ │ │ ├── include.ai.dev.ascii.logo │ │ │ ├── include.ai.dev.shell.ascii.logo │ │ │ ├── include.ai.init.ascii.logo │ │ │ ├── include.ai.wizard.ascii.logo │ │ │ ├── include.create.resource │ │ │ ├── include.create.resource.extra │ │ │ ├── include.helper.functions │ │ │ ├── include.not.written.yet │ │ │ ├── include.text.adjectives.txt │ │ │ ├── include.text.animals.txt │ │ │ ├── include.text.colors.txt │ │ │ ├── include.the.azure.ai.service │ │ │ ├── include.the.azure.ai.service.long │ │ │ ├── include.the.chat.command │ │ │ ├── include.the.config.command │ │ │ ├── include.the.init.command.long │ │ │ ├── include.the.key.option │ │ │ ├── include.the.key.option.where │ │ │ ├── include.the.log.option │ │ │ ├── include.the.region.option │ │ │ ├── include.the.region.option.where │ │ │ ├── include.the.run.command │ │ │ ├── include.the.save.option │ │ │ ├── include.the.search.index.update.command │ │ │ ├── include.the.token.option │ │ │ ├── include.the.token.option.where │ │ │ ├── include.the.zip.option │ │ │ ├── init │ │ │ ├── init.advanced │ │ │ ├── init.examples │ │ │ ├── key │ │ │ ├── key.overview │ │ │ ├── language │ │ │ ├── language.classify │ │ │ ├── language.examples │ │ │ ├── language.extract │ │ │ ├── language.summarize │ │ │ ├── language.translate │ │ │ ├── language.understand │ │ │ ├── region │ │ │ ├── region.overview │ │ │ ├── run │ │ │ ├── run.advanced │ │ │ ├── run.examples │ │ │ ├── samples │ │ │ ├── search │ │ │ ├── search.index │ │ │ ├── search.index.update │ │ │ ├── search.query │ │ │ ├── setup │ │ │ ├── speech │ │ │ │ ├── _ │ │ │ │ ├── batch │ │ │ │ ├── batch.connection │ │ │ │ ├── batch.download │ │ │ │ ├── batch.download.advanced │ │ │ │ ├── batch.download.file │ │ │ │ ├── batch.download.output.file │ │ │ │ ├── batch.download.url │ │ │ │ ├── batch.examples │ │ │ │ ├── batch.foreach │ │ │ │ ├── batch.input.path │ │ │ │ ├── batch.key │ │ │ │ ├── batch.list │ │ │ │ ├── batch.list.advanced │ │ │ │ ├── batch.output │ │ │ │ ├── batch.output.id │ │ │ │ ├── batch.output.ids │ │ │ │ ├── batch.output.json │ │ │ │ ├── batch.output.path │ │ │ │ ├── batch.output.request │ │ │ │ ├── batch.output.url │ │ │ │ ├── batch.output.urls │ │ │ │ ├── batch.processes │ │ │ │ ├── batch.region │ │ │ │ ├── batch.save │ │ │ │ ├── batch.threads │ │ │ │ ├── batch.transcription │ │ │ │ ├── batch.transcription.create │ │ │ │ ├── batch.transcription.create.advanced │ │ │ │ ├── batch.transcription.create.content │ │ │ │ ├── batch.transcription.create.dataset │ │ │ │ ├── batch.transcription.create.language │ │ │ │ ├── batch.transcription.create.model │ │ │ │ ├── batch.transcription.delete │ │ │ │ ├── batch.transcription.delete.advanced │ │ │ │ ├── batch.transcription.description │ │ │ │ ├── batch.transcription.download │ │ │ │ ├── batch.transcription.download.advanced │ │ │ │ ├── batch.transcription.examples │ │ │ │ ├── batch.transcription.list │ │ │ │ ├── batch.transcription.list.advanced │ │ │ │ ├── batch.transcription.list.files │ │ │ │ ├── batch.transcription.list.languages │ │ │ │ ├── batch.transcription.list.transcriptions │ │ │ │ ├── batch.transcription.more.examples │ │ │ │ ├── batch.transcription.name │ │ │ │ ├── batch.transcription.onprem │ │ │ │ ├── batch.transcription.onprem.create │ │ │ │ ├── batch.transcription.onprem.delete │ │ │ │ ├── batch.transcription.onprem.endpoints │ │ │ │ ├── batch.transcription.onprem.list │ │ │ │ ├── batch.transcription.onprem.status │ │ │ │ ├── batch.transcription.project │ │ │ │ ├── batch.transcription.status │ │ │ │ ├── batch.transcription.status.advanced │ │ │ │ ├── batch.transcription.update │ │ │ │ ├── batch.transcription.update.advanced │ │ │ │ ├── batch.transcription.wait │ │ │ │ ├── batch.zip │ │ │ │ ├── csr │ │ │ │ ├── csr.dataset │ │ │ │ ├── csr.dataset.create │ │ │ │ ├── csr.dataset.delete │ │ │ │ ├── csr.dataset.download │ │ │ │ ├── csr.dataset.list │ │ │ │ ├── csr.dataset.status │ │ │ │ ├── csr.dataset.update │ │ │ │ ├── csr.dataset.upload │ │ │ │ ├── csr.download │ │ │ │ ├── csr.endpoint │ │ │ │ ├── csr.endpoint.create │ │ │ │ ├── csr.endpoint.delete │ │ │ │ ├── csr.endpoint.download │ │ │ │ ├── csr.endpoint.list │ │ │ │ ├── csr.endpoint.status │ │ │ │ ├── csr.endpoint.update │ │ │ │ ├── csr.evaluation │ │ │ │ ├── csr.evaluation.create │ │ │ │ ├── csr.evaluation.delete │ │ │ │ ├── csr.evaluation.list │ │ │ │ ├── csr.evaluation.status │ │ │ │ ├── csr.evaluation.update │ │ │ │ ├── csr.examples │ │ │ │ ├── csr.list │ │ │ │ ├── csr.model │ │ │ │ ├── csr.model.copy │ │ │ │ ├── csr.model.create │ │ │ │ ├── csr.model.delete │ │ │ │ ├── csr.model.list │ │ │ │ ├── csr.model.status │ │ │ │ ├── csr.model.update │ │ │ │ ├── csr.model.update.model │ │ │ │ ├── csr.project │ │ │ │ ├── csr.project.create │ │ │ │ ├── csr.project.delete │ │ │ │ ├── csr.project.list │ │ │ │ ├── csr.project.status │ │ │ │ ├── csr.project.update │ │ │ │ ├── endpoint.examples │ │ │ │ ├── examples │ │ │ │ ├── include.create.resource │ │ │ │ ├── include.create.resource.extra │ │ │ │ ├── include.spx.ascii.logo │ │ │ │ ├── include.spx.init.ascii.logo │ │ │ │ ├── include.the.azure.speech.service │ │ │ │ ├── include.the.azure.speech.service.long │ │ │ │ ├── include.the.csr.dataset.command │ │ │ │ ├── include.the.csr.dataset.create.command │ │ │ │ ├── include.the.csr.dataset.delete.command │ │ │ │ ├── include.the.csr.dataset.download.command │ │ │ │ ├── include.the.csr.dataset.list.command │ │ │ │ ├── include.the.csr.dataset.status.command │ │ │ │ ├── include.the.csr.dataset.update.command │ │ │ │ ├── include.the.csr.dataset.upload.command │ │ │ │ ├── include.the.csr.endpoint.command │ │ │ │ ├── include.the.csr.endpoint.create.command │ │ │ │ ├── include.the.csr.endpoint.delete.command │ │ │ │ ├── include.the.csr.endpoint.download.command │ │ │ │ ├── include.the.csr.endpoint.list.command │ │ │ │ ├── include.the.csr.endpoint.status.command │ │ │ │ ├── include.the.csr.endpoint.update.command │ │ │ │ ├── include.the.csr.evaluation.command │ │ │ │ ├── include.the.csr.evaluation.create.command │ │ │ │ ├── include.the.csr.evaluation.delete.command │ │ │ │ ├── include.the.csr.evaluation.list.command │ │ │ │ ├── include.the.csr.evaluation.status.command │ │ │ │ ├── include.the.csr.evaluation.update.command │ │ │ │ ├── include.the.csr.model.command │ │ │ │ ├── include.the.csr.model.copy.command │ │ │ │ ├── include.the.csr.model.create.command │ │ │ │ ├── include.the.csr.model.delete.command │ │ │ │ ├── include.the.csr.model.status.command │ │ │ │ ├── include.the.csr.model.update.command │ │ │ │ ├── include.the.csr.project.command │ │ │ │ ├── include.the.csr.project.create.command │ │ │ │ ├── include.the.csr.project.delete.command │ │ │ │ ├── include.the.csr.project.list.command │ │ │ │ ├── include.the.csr.project.status.command │ │ │ │ ├── include.the.csr.project.update.command │ │ │ │ ├── include.the.init.command.long │ │ │ │ ├── include.the.intent.command │ │ │ │ ├── include.the.intent.command.long │ │ │ │ ├── include.the.intent.method │ │ │ │ ├── include.the.key.option │ │ │ │ ├── include.the.key.option.where │ │ │ │ ├── include.the.log.option │ │ │ │ ├── include.the.luis.option │ │ │ │ ├── include.the.model.list.command │ │ │ │ ├── include.the.profile.command │ │ │ │ ├── include.the.profile.command.long │ │ │ │ ├── include.the.recognize.command │ │ │ │ ├── include.the.recognize.command.long │ │ │ │ ├── include.the.recognize.method │ │ │ │ ├── include.the.region.option │ │ │ │ ├── include.the.region.option.where │ │ │ │ ├── include.the.save.option │ │ │ │ ├── include.the.speaker.command │ │ │ │ ├── include.the.speaker.command.long │ │ │ │ ├── include.the.synthesize.command │ │ │ │ ├── include.the.synthesize.command.long │ │ │ │ ├── include.the.token.option │ │ │ │ ├── include.the.token.option.where │ │ │ │ ├── include.the.transcribe.command │ │ │ │ ├── include.the.transcribe.command.long │ │ │ │ ├── include.the.translate.command │ │ │ │ ├── include.the.translate.command.long │ │ │ │ ├── include.the.zip.option │ │ │ │ ├── intent │ │ │ │ ├── intent.advanced │ │ │ │ ├── intent.connection │ │ │ │ ├── intent.continuous │ │ │ │ ├── intent.endpoint │ │ │ │ ├── intent.examples │ │ │ │ ├── intent.file │ │ │ │ ├── intent.files │ │ │ │ ├── intent.foreach │ │ │ │ ├── intent.format │ │ │ │ ├── intent.input │ │ │ │ ├── intent.key │ │ │ │ ├── intent.keyword │ │ │ │ ├── intent.language │ │ │ │ ├── intent.languages │ │ │ │ ├── intent.log │ │ │ │ ├── intent.luis │ │ │ │ ├── intent.luis.allintents │ │ │ │ ├── intent.luis.intent │ │ │ │ ├── intent.luis.key │ │ │ │ ├── intent.luis.region │ │ │ │ ├── intent.microphone │ │ │ │ ├── intent.once │ │ │ │ ├── intent.output │ │ │ │ ├── intent.output.all │ │ │ │ ├── intent.output.all.example │ │ │ │ ├── intent.output.all.timing │ │ │ │ ├── intent.output.batch │ │ │ │ ├── intent.output.each │ │ │ │ ├── intent.output.examples │ │ │ │ ├── intent.output.vtt │ │ │ │ ├── intent.pattern │ │ │ │ ├── intent.patterns │ │ │ │ ├── intent.phrases │ │ │ │ ├── intent.processes │ │ │ │ ├── intent.profanity │ │ │ │ ├── intent.proxy │ │ │ │ ├── intent.region │ │ │ │ ├── intent.save │ │ │ │ ├── intent.threads │ │ │ │ ├── intent.token │ │ │ │ ├── intent.url │ │ │ │ ├── intent.urls │ │ │ │ ├── intent.wer │ │ │ │ ├── intent.zip │ │ │ │ ├── luis.documentation │ │ │ │ ├── output │ │ │ │ ├── profile │ │ │ │ ├── profile.connection │ │ │ │ ├── profile.create │ │ │ │ ├── profile.delete │ │ │ │ ├── profile.documentation │ │ │ │ ├── profile.enroll │ │ │ │ ├── profile.examples │ │ │ │ ├── profile.file │ │ │ │ ├── profile.id │ │ │ │ ├── profile.key │ │ │ │ ├── profile.kind │ │ │ │ ├── profile.list │ │ │ │ ├── profile.output.file │ │ │ │ ├── profile.output.id │ │ │ │ ├── profile.output.json │ │ │ │ ├── profile.region │ │ │ │ ├── profile.status │ │ │ │ ├── recognize │ │ │ │ ├── recognize.advanced │ │ │ │ ├── recognize.check.wer │ │ │ │ ├── recognize.connect │ │ │ │ ├── recognize.connection │ │ │ │ ├── recognize.continuous │ │ │ │ ├── recognize.default.connection.example │ │ │ │ ├── recognize.endpoint │ │ │ │ ├── recognize.examples │ │ │ │ ├── recognize.file │ │ │ │ ├── recognize.files │ │ │ │ ├── recognize.foreach │ │ │ │ ├── recognize.format │ │ │ │ ├── recognize.input │ │ │ │ ├── recognize.key │ │ │ │ ├── recognize.keyword │ │ │ │ ├── recognize.language │ │ │ │ ├── recognize.languages │ │ │ │ ├── recognize.log │ │ │ │ ├── recognize.microphone │ │ │ │ ├── recognize.once │ │ │ │ ├── recognize.output │ │ │ │ ├── recognize.output.all │ │ │ │ ├── recognize.output.batch │ │ │ │ ├── recognize.output.each │ │ │ │ ├── recognize.output.examples │ │ │ │ ├── recognize.output.vtt │ │ │ │ ├── recognize.phrases │ │ │ │ ├── recognize.processes │ │ │ │ ├── recognize.profanity │ │ │ │ ├── recognize.proxy │ │ │ │ ├── recognize.region │ │ │ │ ├── recognize.save │ │ │ │ ├── recognize.threads │ │ │ │ ├── recognize.token │ │ │ │ ├── recognize.url │ │ │ │ ├── recognize.urls │ │ │ │ ├── recognize.wer │ │ │ │ ├── recognize.word.level.timing │ │ │ │ ├── recognize.zip │ │ │ │ ├── speaker │ │ │ │ ├── speaker.connection │ │ │ │ ├── speaker.documentation │ │ │ │ ├── speaker.examples │ │ │ │ ├── speaker.file │ │ │ │ ├── speaker.id │ │ │ │ ├── speaker.identify │ │ │ │ ├── speaker.key │ │ │ │ ├── speaker.kind │ │ │ │ ├── speaker.language │ │ │ │ ├── speaker.region │ │ │ │ ├── speaker.verify │ │ │ │ ├── synthesize │ │ │ │ ├── synthesize.advanced │ │ │ │ ├── synthesize.audio │ │ │ │ ├── synthesize.audio.output │ │ │ │ ├── synthesize.connection │ │ │ │ ├── synthesize.endpoint │ │ │ │ ├── synthesize.examples │ │ │ │ ├── synthesize.file │ │ │ │ ├── synthesize.files │ │ │ │ ├── synthesize.foreach │ │ │ │ ├── synthesize.format │ │ │ │ ├── synthesize.format.mp3 │ │ │ │ ├── synthesize.format.ogg │ │ │ │ ├── synthesize.format.opus │ │ │ │ ├── synthesize.format.raw │ │ │ │ ├── synthesize.format.siren │ │ │ │ ├── synthesize.format.wav │ │ │ │ ├── synthesize.format.webm │ │ │ │ ├── synthesize.input │ │ │ │ ├── synthesize.key │ │ │ │ ├── synthesize.list.voices │ │ │ │ ├── synthesize.log │ │ │ │ ├── synthesize.mp3 │ │ │ │ ├── synthesize.ogg │ │ │ │ ├── synthesize.opus │ │ │ │ ├── synthesize.output │ │ │ │ ├── synthesize.output.examples │ │ │ │ ├── synthesize.processes │ │ │ │ ├── synthesize.proxy │ │ │ │ ├── synthesize.raw │ │ │ │ ├── synthesize.region │ │ │ │ ├── synthesize.save │ │ │ │ ├── synthesize.siren │ │ │ │ ├── synthesize.threads │ │ │ │ ├── synthesize.token │ │ │ │ ├── synthesize.url │ │ │ │ ├── synthesize.urls │ │ │ │ ├── synthesize.wav │ │ │ │ ├── synthesize.webm │ │ │ │ ├── synthesize.zip │ │ │ │ ├── transcribe │ │ │ │ ├── transcribe.advanced │ │ │ │ ├── transcribe.examples │ │ │ │ ├── transcribe.file │ │ │ │ ├── transcribe.files │ │ │ │ ├── transcribe.foreach │ │ │ │ ├── transcribe.input │ │ │ │ ├── transcribe.key │ │ │ │ ├── transcribe.language │ │ │ │ ├── transcribe.languages │ │ │ │ ├── transcribe.log │ │ │ │ ├── transcribe.output │ │ │ │ ├── transcribe.output.all │ │ │ │ ├── transcribe.output.batch │ │ │ │ ├── transcribe.output.each │ │ │ │ ├── transcribe.output.examples │ │ │ │ ├── transcribe.output.json │ │ │ │ ├── transcribe.output.request │ │ │ │ ├── transcribe.output.srt.file │ │ │ │ ├── transcribe.output.vtt.file │ │ │ │ ├── transcribe.processes │ │ │ │ ├── transcribe.profanity │ │ │ │ ├── transcribe.region │ │ │ │ ├── transcribe.save │ │ │ │ ├── transcribe.threads │ │ │ │ ├── transcribe.url │ │ │ │ ├── transcribe.urls │ │ │ │ ├── transcribe.zip │ │ │ │ ├── translate │ │ │ │ ├── translate.advanced │ │ │ │ ├── translate.connect │ │ │ │ ├── translate.connection │ │ │ │ ├── translate.continuous │ │ │ │ ├── translate.endpoint │ │ │ │ ├── translate.examples │ │ │ │ ├── translate.file │ │ │ │ ├── translate.files │ │ │ │ ├── translate.foreach │ │ │ │ ├── translate.format │ │ │ │ ├── translate.input │ │ │ │ ├── translate.key │ │ │ │ ├── translate.keyword │ │ │ │ ├── translate.language │ │ │ │ ├── translate.log │ │ │ │ ├── translate.microphone │ │ │ │ ├── translate.once │ │ │ │ ├── translate.output │ │ │ │ ├── translate.output.all │ │ │ │ ├── translate.output.each │ │ │ │ ├── translate.output.examples │ │ │ │ ├── translate.phrases │ │ │ │ ├── translate.processes │ │ │ │ ├── translate.proxy │ │ │ │ ├── translate.region │ │ │ │ ├── translate.save │ │ │ │ ├── translate.threads │ │ │ │ ├── translate.token │ │ │ │ ├── translate.url │ │ │ │ ├── translate.urls │ │ │ │ ├── translate.word.level.timing │ │ │ │ └── translate.zip │ │ │ ├── test │ │ │ ├── test.list │ │ │ ├── test.run │ │ │ ├── tool │ │ │ ├── usage │ │ │ ├── vision │ │ │ ├── vision.document │ │ │ ├── vision.examples │ │ │ ├── vision.face │ │ │ ├── vision.form │ │ │ ├── vision.image │ │ │ ├── vision.image.analyze │ │ │ ├── vision.image.analyze.examples │ │ │ ├── vision.image.analyze.file │ │ │ ├── vision.image.analyze.genderneutralcaptions │ │ │ ├── vision.image.analyze.language │ │ │ ├── vision.image.analyze.modelversion │ │ │ ├── vision.image.analyze.smartaspectratios │ │ │ ├── vision.image.analyze.url │ │ │ ├── vision.image.analyze.visualfeatures │ │ │ ├── vision.person │ │ │ └── wizard │ │ └── templates │ │ │ ├── aml-chat-streaming-cs │ │ │ ├── AzureAIInferencingChatCompletionsStreaming.csproj._ │ │ │ ├── AzureAIInferencingChatCompletionsStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── aml-chat-streaming-py │ │ │ ├── _.json │ │ │ ├── azureml_chat_completions_streaming.py │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── helper_functions │ │ │ ├── .ai │ │ │ │ ├── prompt.md │ │ │ │ └── system.md │ │ │ ├── DEV-NEW-DID-YOU-KNOW.md │ │ │ ├── HelperFunctionsProject.csproj._ │ │ │ ├── UserNameHelperFunctionClass.cs │ │ │ └── _.json │ │ │ ├── includes │ │ │ ├── ReadLineWrapper.js │ │ │ ├── openai-asst-cs │ │ │ │ ├── OpenAIAssistants.csproj._ │ │ │ │ ├── OpenAIAssistantsClass.cs │ │ │ │ └── Program.cs │ │ │ ├── openai-cs │ │ │ │ ├── ChatCompletionsClass.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── environment_vars.cs │ │ │ │ └── openai-cs.csproj._ │ │ │ ├── openai.asst.js │ │ │ │ ├── FunctionFactory.js │ │ │ │ ├── OpenAIAssistantsClass.js │ │ │ │ ├── OpenAIAssistantsCustomFunctions.js │ │ │ │ ├── main.js │ │ │ │ ├── package.json │ │ │ │ └── script.js │ │ │ ├── openai.asst.py │ │ │ │ ├── function_call_context.py │ │ │ │ ├── function_factory.py │ │ │ │ ├── main.py │ │ │ │ ├── openai_assistants_custom_functions.py │ │ │ │ ├── openai_assistants_streaming_class_template.py │ │ │ │ └── requirements.txt │ │ │ ├── openai.asst.web │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ ├── style.css │ │ │ │ └── vite.config.js │ │ │ ├── openai.js │ │ │ │ └── create.openai.js │ │ │ ├── openai.py │ │ │ │ └── create.openai.py │ │ │ ├── openai.ts │ │ │ │ └── create.openai.ts │ │ │ ├── phi3-onnx-chat-cs │ │ │ │ ├── OnnxGenAIChatCompletionsStreamingClass.cs │ │ │ │ ├── Phi3ChatStreaming.csproj._ │ │ │ │ ├── Program.cs │ │ │ │ └── get-phi3-mini-onnx.cmd │ │ │ ├── sk-cs │ │ │ │ ├── Program.cs │ │ │ │ ├── SemanticKernelChatCompletionsClass.cs │ │ │ │ ├── environment_vars.cs │ │ │ │ └── sk.csproj._ │ │ │ ├── speech-to-text-cs │ │ │ │ ├── Program.cs │ │ │ │ └── SpeechToText.csproj._ │ │ │ └── text-to-speech-cs │ │ │ │ ├── Program.cs │ │ │ │ └── TextToSpeech.csproj._ │ │ │ ├── openai-asst-cs │ │ │ ├── OpenAIAssistants.csproj._ │ │ │ ├── OpenAIAssistantsClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-asst-js │ │ │ ├── OpenAIAssistantsClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ ├── main.js │ │ │ └── package.json │ │ │ ├── openai-asst-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ ├── openai_assistants.py │ │ │ └── requirements.txt │ │ │ ├── openai-asst-streaming-cs │ │ │ ├── OpenAIAssistantsStreaming.csproj._ │ │ │ ├── OpenAIAssistantsStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-asst-streaming-js │ │ │ ├── OpenAIAssistantsStreamingClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ ├── main.js │ │ │ └── package.json │ │ │ ├── openai-asst-streaming-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ ├── openai_assistants_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-asst-streaming-with-code-cs │ │ │ ├── OpenAIAssistantsCodeInterpreterStreaming.csproj._ │ │ │ ├── OpenAIAssistantsCodeInterpreterStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-asst-streaming-with-code-js │ │ │ ├── OpenAIAssistantsCodeInterpreterStreamingClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ ├── main.js │ │ │ └── package.json │ │ │ ├── openai-asst-streaming-with-code-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ ├── openai_assistants_code_interpreter_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-asst-streaming-with-file-search-cs │ │ │ ├── OpenAIAssistantsFileSearchStreaming.csproj._ │ │ │ ├── OpenAIAssistantsFileSearchStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-asst-streaming-with-file-search-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ ├── openai_assistants_file_search_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-asst-streaming-with-file_search-js │ │ │ ├── OpenAIAssistantsFileSearchStreamingClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ ├── main.js │ │ │ └── package.json │ │ │ ├── openai-asst-streaming-with-functions-cs │ │ │ ├── FunctionFactory.cs │ │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ │ ├── OpenAIAssistantsCustomFunctions.cs │ │ │ ├── OpenAIAssistantsFunctionsStreaming.csproj._ │ │ │ ├── OpenAIAssistantsFunctionsStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-asst-streaming-with-functions-js │ │ │ ├── FunctionFactory.js │ │ │ ├── OpenAIAssistantsCustomFunctions.js │ │ │ ├── OpenAIAssistantsFunctionsStreamingClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ ├── main.js │ │ │ └── package.json │ │ │ ├── openai-asst-streaming-with-functions-py │ │ │ ├── _.json │ │ │ ├── function_factory.py │ │ │ ├── main.py │ │ │ ├── openai_assistants_custom_functions.py │ │ │ ├── openai_assistants_functions_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-asst-webpage-js │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── ai.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── OpenAIAssistantsStreamingClass.js │ │ │ │ └── script.js │ │ │ ├── style.css │ │ │ └── vite.config.js │ │ │ ├── openai-asst-webpage-ts │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── favicon.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── OpenAIAssistantsStreamingClass.ts │ │ │ │ ├── index.ts │ │ │ │ └── vite-env.d.ts │ │ │ ├── style.css │ │ │ └── vite.config.js │ │ │ ├── openai-asst-webpage-with-functions-js │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── ai.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── FunctionFactory.js │ │ │ │ ├── OpenAIAssistantsCustomFunctions.js │ │ │ │ ├── OpenAIAssistantsFunctionsStreamingClass.js │ │ │ │ └── script.js │ │ │ ├── style.css │ │ │ └── vite.config.js │ │ │ ├── openai-chat-cs │ │ │ ├── OpenAIChatCompletions.csproj._ │ │ │ ├── OpenAIChatCompletionsClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-chat-go │ │ │ ├── _.json │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── openai_chat_completions_hello_world.go │ │ │ ├── openai-chat-java │ │ │ ├── _.json │ │ │ ├── pom.xml │ │ │ ├── scripts │ │ │ │ ├── 1-copydependencies.bat │ │ │ │ ├── 2-compile.bat │ │ │ │ └── 3-run.bat │ │ │ └── src │ │ │ │ ├── Main.java │ │ │ │ └── OpenAIChatCompletionsClass.java │ │ │ ├── openai-chat-js │ │ │ ├── DEV-NEW-DID-YOU-KNOW.md │ │ │ ├── Main.js │ │ │ ├── OpenAIChatCompletionsClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ └── package.json │ │ │ ├── openai-chat-py │ │ │ ├── _.json │ │ │ ├── openai_chat_completions.py │ │ │ └── requirements.txt │ │ │ ├── openai-chat-streaming-cs │ │ │ ├── OpenAIChatCompletionsStreaming.csproj._ │ │ │ ├── OpenAIChatCompletionsStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-chat-streaming-go │ │ │ ├── _.json │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── openai_chat_completions_streaming_hello_world.go │ │ │ ├── openai-chat-streaming-java │ │ │ ├── _.json │ │ │ ├── pom.xml │ │ │ ├── scripts │ │ │ │ ├── 1-copydependencies.bat │ │ │ │ ├── 2-compile.bat │ │ │ │ └── 3-run.bat │ │ │ └── src │ │ │ │ ├── Main.java │ │ │ │ └── OpenAIChatCompletionsStreamingClass.java │ │ │ ├── openai-chat-streaming-js │ │ │ ├── DEV-NEW-DID-YOU-KNOW.md │ │ │ ├── Main.js │ │ │ ├── OpenAIChatCompletionsStreamingClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ └── package.json │ │ │ ├── openai-chat-streaming-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ ├── openai_chat_completions_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-chat-streaming-with-data-cs │ │ │ ├── OpenAIChatCompletionsWithDataStreaming.csproj._ │ │ │ ├── OpenAIChatCompletionsWithDataStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-chat-streaming-with-data-go │ │ │ ├── _.json │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── openai_chat_completions_streaming_with_data_hello_world.go │ │ │ ├── openai-chat-streaming-with-data-java │ │ │ ├── _.json │ │ │ ├── pom.xml │ │ │ ├── scripts │ │ │ │ ├── 1-copydependencies.bat │ │ │ │ ├── 2-compile.bat │ │ │ │ └── 3-run.bat │ │ │ └── src │ │ │ │ ├── Main.java │ │ │ │ └── OpenAIChatCompletionsWithDataStreamingClass.java │ │ │ ├── openai-chat-streaming-with-data-js │ │ │ ├── Main.js │ │ │ ├── OpenAIChatCompletionsStreamingWithDataClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ └── package.json │ │ │ ├── openai-chat-streaming-with-data-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ ├── openai_chat_completions_with_data_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-chat-streaming-with-functions-cs │ │ │ ├── FunctionCallContext.cs │ │ │ ├── FunctionFactory.cs │ │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ │ ├── OpenAIChatCompletionsCustomFunctions.cs │ │ │ ├── OpenAIChatCompletionsFunctionsStreaming.csproj._ │ │ │ ├── OpenAIChatCompletionsFunctionsStreamingClass.cs │ │ │ ├── Program.cs │ │ │ └── _.json │ │ │ ├── openai-chat-streaming-with-functions-go │ │ │ ├── _.json │ │ │ ├── function_call_context.go │ │ │ ├── function_factory.go │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ ├── openai_chat_completions_custom_functions.go │ │ │ └── openai_chat_completions_functions_streaming_hello_world.go │ │ │ ├── openai-chat-streaming-with-functions-js │ │ │ ├── DEV-NEW-DID-YOU-KNOW.md │ │ │ ├── FunctionCallContext.js │ │ │ ├── FunctionFactory.js │ │ │ ├── Main.js │ │ │ ├── OpenAIChatCompletionsCustomFunctions.js │ │ │ ├── OpenAIChatCompletionsFunctionsStreamingClass.js │ │ │ ├── ReadLineWrapper.js │ │ │ ├── _.json │ │ │ └── package.json │ │ │ ├── openai-chat-streaming-with-functions-py │ │ │ ├── _.json │ │ │ ├── function_call_context.py │ │ │ ├── function_factory.py │ │ │ ├── main.py │ │ │ ├── openai_chat_completions_custom_functions.py │ │ │ ├── openai_chat_completions_functions_streaming.py │ │ │ └── requirements.txt │ │ │ ├── openai-chat-webpage-js │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── ai.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── OpenAIChatCompletionsStreamingClass.js │ │ │ │ └── script.js │ │ │ ├── style.css │ │ │ └── webpack.config.js │ │ │ ├── openai-chat-webpage-ts │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── ai.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── OpenAIChatCompletionsStreamingClass.ts │ │ │ │ └── script.ts │ │ │ ├── style.css │ │ │ ├── tsconfig.json │ │ │ ├── types │ │ │ │ └── marked.d.ts │ │ │ └── webpack.config.js │ │ │ ├── openai-chat-webpage-with-functions-js │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── ai.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── FunctionCallContext.js │ │ │ │ ├── FunctionFactory.js │ │ │ │ ├── OpenAIChatCompletionsCustomFunctions.js │ │ │ │ ├── OpenAIChatCompletionsFunctionsStreamingClass.js │ │ │ │ └── script.js │ │ │ ├── style.css │ │ │ └── webpack.config.js │ │ │ ├── openai-chat-webpage-with-functions-ts │ │ │ ├── .env │ │ │ ├── README.md │ │ │ ├── _.json │ │ │ ├── ai.png │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── FunctionCallContext.ts │ │ │ │ ├── FunctionFactory.ts │ │ │ │ ├── OpenAIChatCompletionsCustomFunctions.ts │ │ │ │ ├── OpenAIChatCompletionsFunctionsStreamingClass.ts │ │ │ │ └── script.ts │ │ │ ├── style.css │ │ │ ├── tsconfig.json │ │ │ ├── types │ │ │ │ └── marked.d.ts │ │ │ └── webpack.config.js │ │ │ ├── openai-chat-webpage-with-speech-and-functions-ts │ │ │ ├── _.json │ │ │ ├── assets │ │ │ │ ├── style.css │ │ │ │ └── w3.css │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── FunctionCallContext.ts │ │ │ │ ├── FunctionFactory.ts │ │ │ │ ├── OpenAIChatCompletionsCustomFunctions.ts │ │ │ │ ├── OpenAIChatCompletionsFunctionsStreamingClass.ts │ │ │ │ ├── main.ts │ │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ │ │ ├── openai-chat-webpage-with-speech-ts │ │ │ ├── _.json │ │ │ ├── assets │ │ │ │ ├── style.css │ │ │ │ └── w3.css │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── OpenAIChatCompletionStreamingClass.ts │ │ │ │ ├── main.ts │ │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ │ │ ├── openai-realtime-chat-cs │ │ │ ├── MicrophoneAudioInputStream.cs │ │ │ ├── OpenAIRealtimeChat.csproj._ │ │ │ ├── OpenAIRealtimeConversationSessionHelperClass.cs │ │ │ ├── Program.cs │ │ │ ├── SpeakerAudioOutputStream.cs │ │ │ └── _.json │ │ │ ├── openai-realtime-chat-with-functions-cs │ │ │ ├── FunctionFactory.cs │ │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ │ ├── MicrophoneAudioInputStream.cs │ │ │ ├── OpenAIRealtimeChatStreamingCustomFunctions.cs │ │ │ ├── OpenAIRealtimeChatWithFunctions.csproj._ │ │ │ ├── OpenAIRealtimeConversationSessionHelperClass.cs │ │ │ ├── Program.cs │ │ │ ├── SpeakerAudioOutputStream.cs │ │ │ └── _.json │ │ │ ├── openai-realtime-chat-with-keyword-cs │ │ │ ├── Audio │ │ │ │ ├── AudioDataAvailableEventArgs.cs │ │ │ │ ├── AudioResampler16KhzTo24Khz.cs │ │ │ │ ├── AudioSourceControlStream.cs │ │ │ │ ├── AudioSourceController.cs │ │ │ │ ├── AudioSourceState.cs │ │ │ │ ├── KeywordGatedAudio16khzSource.cs │ │ │ │ ├── KeywordGatedAudio24KhzSource.cs │ │ │ │ ├── NAudioMicrophone24KhzSource.cs │ │ │ │ ├── SoundEventArgs.cs │ │ │ │ └── SpeakerAudioOutputStream.cs │ │ │ ├── ConsoleHelpers.cs │ │ │ ├── OpenAI │ │ │ │ ├── FunctionFactory.cs │ │ │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ │ │ ├── OpenAIRealtimeChatStreamingCustomFunctions.cs │ │ │ │ └── OpenAIRealtimeConversationSessionHelperClass.cs │ │ │ ├── OpenAIRealtimeChatWithKeyword.csproj._ │ │ │ ├── Program.cs │ │ │ ├── _.json │ │ │ └── keyword.table │ │ │ ├── phi3-onnx-chat-streaming-cs │ │ │ ├── OnnxGenAIChatCompletionsStreamingClass.cs │ │ │ ├── Phi3ChatStreaming.csproj._ │ │ │ ├── Program.cs │ │ │ ├── _.json │ │ │ └── get-phi3-mini-onnx.cmd │ │ │ ├── phi3-onnx-chat-streaming-with-functions-cs │ │ │ ├── FunctionFactory.cs │ │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ │ ├── OnnxGenAIChatCompletionsCustomFunctions.cs │ │ │ ├── OnnxGenAIChatCompletionsStreamingClass.cs │ │ │ ├── OnnxGenAIChatContentMessage.cs │ │ │ ├── OnnxGenAIChatFunctionCallContext.cs │ │ │ ├── OnnxGenAIChatTool.cs │ │ │ ├── Phi3ChatStreaming.csproj._ │ │ │ ├── Program.cs │ │ │ ├── _.json │ │ │ ├── get-phi3-mini-onnx.cmd │ │ │ └── system.txt │ │ │ ├── sk-chat-streaming-cs │ │ │ ├── Program.cs │ │ │ ├── SemanticKernelChatCompletionsStreaming.csproj._ │ │ │ ├── SemanticKernelChatCompletionsStreamingClass.cs │ │ │ └── _.json │ │ │ ├── sk-chat-streaming-with-data-cs │ │ │ ├── Program.cs │ │ │ ├── SemanticKernelChatCompletionsDataStreaming.csproj._ │ │ │ ├── SemanticKernelChatCompletionsDataStreamingClass.cs │ │ │ └── _.json │ │ │ ├── sk-chat-streaming-with-functions-cs │ │ │ ├── Program.cs │ │ │ ├── SemanticKernelChatCompletionsFunctionsStreaming.csproj._ │ │ │ ├── SemanticKernelChatCompletionsFunctionsStreamingClass.cs │ │ │ ├── SemanticKernelCustomFunctions.cs │ │ │ └── _.json │ │ │ ├── sk-chat-with-agents-cs │ │ │ ├── .ai │ │ │ │ ├── prompt.md │ │ │ │ └── system.md │ │ │ ├── Program.cs │ │ │ ├── README.md │ │ │ ├── SemanticKernelChatWithAgents.csproj._ │ │ │ └── _.json │ │ │ ├── speech-to-text-continuous-reco-cs │ │ │ ├── Program.cs │ │ │ ├── SpeechToTextContinuousReco.csproj._ │ │ │ └── _.json │ │ │ ├── speech-to-text-continuous-reco-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── speech-to-text-cs │ │ │ ├── Program.cs │ │ │ ├── SpeechToText.csproj._ │ │ │ └── _.json │ │ │ ├── speech-to-text-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── speech-to-text-with-file-cs │ │ │ ├── Program.cs │ │ │ ├── SpeechToTextWithFile.csproj._ │ │ │ └── _.json │ │ │ ├── speech-to-text-with-file-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── speech-to-text-with-keyword-cs │ │ │ ├── Program.cs │ │ │ ├── SpeechToTextWithKeyword.csproj._ │ │ │ └── _.json │ │ │ ├── speech-to-text-with-keyword-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── speech-to-text-with-translation-cs │ │ │ ├── Program.cs │ │ │ ├── SpeechToTextWithTranslation.csproj._ │ │ │ └── _.json │ │ │ ├── speech-to-text-with-translation-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── text-to-speech-cs │ │ │ ├── Program.cs │ │ │ ├── TextToSpeech.csproj._ │ │ │ └── _.json │ │ │ ├── text-to-speech-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ │ │ ├── text-to-speech-with-file-cs │ │ │ ├── Program.cs │ │ │ ├── TextToSpeechWithFile.csproj._ │ │ │ └── _.json │ │ │ └── text-to-speech-with-file-py │ │ │ ├── _.json │ │ │ ├── main.py │ │ │ └── requirements.txt │ ├── BuildCommon.targets │ ├── LICENSE.txt │ ├── Program_AI.cs │ ├── ai-cli.csproj │ ├── app.manifest │ ├── commands │ │ ├── AiCliTestFrameworkLogger.cs │ │ ├── CaptionAudioSpeechToTextQuickStart.cs │ │ ├── chat_command.cs │ │ ├── dev_command.cs │ │ ├── eval_command.cs │ │ ├── init_command.cs │ │ ├── language_command.cs │ │ ├── models │ │ │ └── prompty_front_matter.cs │ │ ├── parsers │ │ │ ├── chat_command_parser.cs │ │ │ ├── dev_command_parser.cs │ │ │ ├── eval_command_parser.cs │ │ │ ├── init_command_parser.cs │ │ │ ├── language_command_parser.cs │ │ │ ├── scenario_wizard_command_parser.cs │ │ │ ├── search_command_parser.cs │ │ │ ├── service_command_parser.cs │ │ │ ├── speech_command_parser.cs │ │ │ ├── test_command_parser.cs │ │ │ ├── tool_command_parser.cs │ │ │ ├── update_command_parser.cs │ │ │ ├── version_command_parser.cs │ │ │ └── vision_command_parser.cs │ │ ├── scenario_action.cs │ │ ├── scenario_actions.cs │ │ ├── scenario_wizard_command.cs │ │ ├── search_command.cs │ │ ├── service_command.cs │ │ ├── speech_command.cs │ │ ├── test_command.cs │ │ ├── tool_command.cs │ │ ├── version_command.cs │ │ └── vision_command.cs │ ├── helpers │ │ ├── ai_event_logger_helpers.cs │ │ ├── config_environment_helpers.cs │ │ ├── openai │ │ │ ├── LogTrafficEventPolicy.cs │ │ │ ├── OpenAIAssistantHelpers.cs │ │ │ ├── OpenAIChatHelpers.cs │ │ │ └── TrafficEventPolicy.cs │ │ ├── output_helper_base.cs │ │ └── telemetry_helper.cs │ └── linker.xml ├── clis │ ├── spx │ │ ├── .x │ │ │ ├── config │ │ │ │ ├── batch.default.config │ │ │ │ ├── batch.default.connection │ │ │ │ ├── batch.default.output │ │ │ │ ├── connection │ │ │ │ ├── connection.from.endpoint │ │ │ │ ├── connection.from.host │ │ │ │ ├── connection.from.region │ │ │ │ ├── csr.default.config │ │ │ │ ├── csr.default.connection │ │ │ │ ├── csr.default.output │ │ │ │ ├── default.log │ │ │ │ ├── default.path │ │ │ │ ├── defaults │ │ │ │ ├── dialog.default.config │ │ │ │ ├── dialog.default.connection │ │ │ │ ├── dialog.default.output │ │ │ │ ├── endpoint │ │ │ │ ├── fiddler │ │ │ │ ├── host │ │ │ │ ├── identify.default.config │ │ │ │ ├── identify.default.connection │ │ │ │ ├── identify.default.output │ │ │ │ ├── init.default.config │ │ │ │ ├── init.default.output │ │ │ │ ├── input.path │ │ │ │ ├── intent.default.config │ │ │ │ ├── intent.default.connection │ │ │ │ ├── intent.default.output │ │ │ │ ├── key │ │ │ │ ├── language │ │ │ │ ├── log.pid │ │ │ │ ├── log.time │ │ │ │ ├── log.time.pid │ │ │ │ ├── my.defaults │ │ │ │ ├── none │ │ │ │ ├── output │ │ │ │ ├── output.all.detailed │ │ │ │ ├── output.all.latency │ │ │ │ ├── output.all.standard │ │ │ │ ├── output.all.transcript.display │ │ │ │ ├── output.all.transcript.lexical │ │ │ │ ├── output.each.detailed │ │ │ │ ├── output.each.event │ │ │ │ ├── output.each.latency │ │ │ │ ├── profile.default.config │ │ │ │ ├── profile.default.connection │ │ │ │ ├── profile.default.output │ │ │ │ ├── recognize.default.config │ │ │ │ ├── recognize.default.connection │ │ │ │ ├── recognize.default.output │ │ │ │ ├── region │ │ │ │ ├── run.default.config │ │ │ │ ├── speaker.default.config │ │ │ │ ├── speaker.default.connection │ │ │ │ ├── speaker.default.output │ │ │ │ ├── spx.defaults │ │ │ │ ├── synthesize.default.config │ │ │ │ ├── synthesize.default.connection │ │ │ │ ├── synthesize.default.output │ │ │ │ ├── synthesize.output.all.standard │ │ │ │ ├── transcribe.default.config │ │ │ │ ├── transcribe.default.connection │ │ │ │ ├── transcribe.default.output │ │ │ │ ├── translate.default.config │ │ │ │ ├── translate.default.connection │ │ │ │ ├── translate.default.output │ │ │ │ ├── translate.output.all.translated.text │ │ │ │ ├── translate.output.each.translated.text │ │ │ │ ├── webjob.default.config │ │ │ │ ├── webjob.default.connection │ │ │ │ ├── webjob.endpoint │ │ │ │ └── webjob.password │ │ │ └── help │ │ │ │ ├── advanced.setup │ │ │ │ ├── batch │ │ │ │ ├── batch.connection │ │ │ │ ├── batch.download │ │ │ │ ├── batch.download.advanced │ │ │ │ ├── batch.download.file │ │ │ │ ├── batch.download.output.file │ │ │ │ ├── batch.download.url │ │ │ │ ├── batch.examples │ │ │ │ ├── batch.foreach │ │ │ │ ├── batch.input.path │ │ │ │ ├── batch.key │ │ │ │ ├── batch.list │ │ │ │ ├── batch.list.advanced │ │ │ │ ├── batch.output │ │ │ │ ├── batch.output.id │ │ │ │ ├── batch.output.ids │ │ │ │ ├── batch.output.json │ │ │ │ ├── batch.output.path │ │ │ │ ├── batch.output.request │ │ │ │ ├── batch.output.url │ │ │ │ ├── batch.output.urls │ │ │ │ ├── batch.processes │ │ │ │ ├── batch.region │ │ │ │ ├── batch.save │ │ │ │ ├── batch.threads │ │ │ │ ├── batch.transcription │ │ │ │ ├── batch.transcription.create │ │ │ │ ├── batch.transcription.create.advanced │ │ │ │ ├── batch.transcription.create.content │ │ │ │ ├── batch.transcription.create.dataset │ │ │ │ ├── batch.transcription.create.diarization │ │ │ │ ├── batch.transcription.create.language │ │ │ │ ├── batch.transcription.create.model │ │ │ │ ├── batch.transcription.create.profanity.filter │ │ │ │ ├── batch.transcription.create.properties │ │ │ │ ├── batch.transcription.create.punctuation.mode │ │ │ │ ├── batch.transcription.create.word.level.timing │ │ │ │ ├── batch.transcription.delete │ │ │ │ ├── batch.transcription.delete.advanced │ │ │ │ ├── batch.transcription.description │ │ │ │ ├── batch.transcription.download │ │ │ │ ├── batch.transcription.download.advanced │ │ │ │ ├── batch.transcription.examples │ │ │ │ ├── batch.transcription.list │ │ │ │ ├── batch.transcription.list.advanced │ │ │ │ ├── batch.transcription.list.files │ │ │ │ ├── batch.transcription.list.languages │ │ │ │ ├── batch.transcription.list.transcriptions │ │ │ │ ├── batch.transcription.more.examples │ │ │ │ ├── batch.transcription.name │ │ │ │ ├── batch.transcription.onprem │ │ │ │ ├── batch.transcription.onprem.create │ │ │ │ ├── batch.transcription.onprem.delete │ │ │ │ ├── batch.transcription.onprem.endpoints │ │ │ │ ├── batch.transcription.onprem.list │ │ │ │ ├── batch.transcription.onprem.status │ │ │ │ ├── batch.transcription.project │ │ │ │ ├── batch.transcription.reference │ │ │ │ ├── batch.transcription.status │ │ │ │ ├── batch.transcription.status.advanced │ │ │ │ ├── batch.transcription.update │ │ │ │ ├── batch.transcription.update.advanced │ │ │ │ ├── batch.transcription.wait │ │ │ │ ├── batch.zip │ │ │ │ ├── check │ │ │ │ ├── check.advanced │ │ │ │ ├── check.examples │ │ │ │ ├── check.result │ │ │ │ ├── config │ │ │ │ ├── config.add │ │ │ │ ├── config.advanced │ │ │ │ ├── config.clear │ │ │ │ ├── config.command │ │ │ │ ├── config.examples │ │ │ │ ├── config.find │ │ │ │ ├── config.hive │ │ │ │ ├── config.region │ │ │ │ ├── config.scope │ │ │ │ ├── config.set │ │ │ │ ├── connect │ │ │ │ ├── continuous │ │ │ │ ├── conversation │ │ │ │ ├── conversation.id │ │ │ │ ├── csr │ │ │ │ ├── csr.dataset │ │ │ │ ├── csr.dataset.create │ │ │ │ ├── csr.dataset.create.content │ │ │ │ ├── csr.dataset.create.kind │ │ │ │ ├── csr.dataset.create.language │ │ │ │ ├── csr.dataset.delete │ │ │ │ ├── csr.dataset.delete.dataset │ │ │ │ ├── csr.dataset.description │ │ │ │ ├── csr.dataset.download │ │ │ │ ├── csr.dataset.download.file │ │ │ │ ├── csr.dataset.list │ │ │ │ ├── csr.dataset.list.datasets │ │ │ │ ├── csr.dataset.list.files │ │ │ │ ├── csr.dataset.list.languages │ │ │ │ ├── csr.dataset.list.project │ │ │ │ ├── csr.dataset.name │ │ │ │ ├── csr.dataset.project │ │ │ │ ├── csr.dataset.status │ │ │ │ ├── csr.dataset.status.dataset │ │ │ │ ├── csr.dataset.update │ │ │ │ ├── csr.dataset.update.dataset │ │ │ │ ├── csr.dataset.upload │ │ │ │ ├── csr.dataset.upload.data │ │ │ │ ├── csr.dataset.upload.kind │ │ │ │ ├── csr.dataset.upload.language │ │ │ │ ├── csr.download │ │ │ │ ├── csr.download.dataset.file │ │ │ │ ├── csr.download.endpoint.log │ │ │ │ ├── csr.download.file │ │ │ │ ├── csr.download.url │ │ │ │ ├── csr.endpoint │ │ │ │ ├── csr.endpoint.create │ │ │ │ ├── csr.endpoint.create.language │ │ │ │ ├── csr.endpoint.create.model │ │ │ │ ├── csr.endpoint.create.text │ │ │ │ ├── csr.endpoint.delete │ │ │ │ ├── csr.endpoint.delete.endpoint │ │ │ │ ├── csr.endpoint.delete.endpoint.log │ │ │ │ ├── csr.endpoint.description │ │ │ │ ├── csr.endpoint.download │ │ │ │ ├── csr.endpoint.download.endpoint.log │ │ │ │ ├── csr.endpoint.examples │ │ │ │ ├── csr.endpoint.list │ │ │ │ ├── csr.endpoint.list.endpoint.languages │ │ │ │ ├── csr.endpoint.list.endpoint.logs │ │ │ │ ├── csr.endpoint.list.endpoints │ │ │ │ ├── csr.endpoint.list.project │ │ │ │ ├── csr.endpoint.name │ │ │ │ ├── csr.endpoint.project │ │ │ │ ├── csr.endpoint.status │ │ │ │ ├── csr.endpoint.status.endpoint │ │ │ │ ├── csr.endpoint.update │ │ │ │ ├── csr.endpoint.update.endpoint │ │ │ │ ├── csr.evaluation │ │ │ │ ├── csr.evaluation.create │ │ │ │ ├── csr.evaluation.delete │ │ │ │ ├── csr.evaluation.examples │ │ │ │ ├── csr.evaluation.list │ │ │ │ ├── csr.evaluation.status │ │ │ │ ├── csr.evaluation.update │ │ │ │ ├── csr.examples │ │ │ │ ├── csr.foreach │ │ │ │ ├── csr.input.path │ │ │ │ ├── csr.key │ │ │ │ ├── csr.list │ │ │ │ ├── csr.list.base.models │ │ │ │ ├── csr.list.dataset.languages │ │ │ │ ├── csr.list.datasets │ │ │ │ ├── csr.list.endpoint.languages │ │ │ │ ├── csr.list.endpoints │ │ │ │ ├── csr.list.model.languages │ │ │ │ ├── csr.list.models │ │ │ │ ├── csr.list.project.languages │ │ │ │ ├── csr.list.projects │ │ │ │ ├── csr.model │ │ │ │ ├── csr.model.copy │ │ │ │ ├── csr.model.copy.target │ │ │ │ ├── csr.model.create │ │ │ │ ├── csr.model.create.base │ │ │ │ ├── csr.model.create.dataset │ │ │ │ ├── csr.model.create.datasets │ │ │ │ ├── csr.model.create.language │ │ │ │ ├── csr.model.create.text │ │ │ │ ├── csr.model.delete │ │ │ │ ├── csr.model.delete.model │ │ │ │ ├── csr.model.description │ │ │ │ ├── csr.model.examples │ │ │ │ ├── csr.model.list │ │ │ │ ├── csr.model.list.base.models │ │ │ │ ├── csr.model.list.model.languages │ │ │ │ ├── csr.model.list.model.project │ │ │ │ ├── csr.model.list.models │ │ │ │ ├── csr.model.name │ │ │ │ ├── csr.model.project │ │ │ │ ├── csr.model.status │ │ │ │ ├── csr.model.status.model │ │ │ │ ├── csr.model.update │ │ │ │ ├── csr.model.update.model │ │ │ │ ├── csr.more.examples │ │ │ │ ├── csr.output.file │ │ │ │ ├── csr.output.id │ │ │ │ ├── csr.output.json │ │ │ │ ├── csr.output.path │ │ │ │ ├── csr.output.url │ │ │ │ ├── csr.project │ │ │ │ ├── csr.project.create │ │ │ │ ├── csr.project.create.language │ │ │ │ ├── csr.project.delete │ │ │ │ ├── csr.project.delete.project │ │ │ │ ├── csr.project.description │ │ │ │ ├── csr.project.examples │ │ │ │ ├── csr.project.list │ │ │ │ ├── csr.project.list.project.languages │ │ │ │ ├── csr.project.list.projects │ │ │ │ ├── csr.project.name │ │ │ │ ├── csr.project.status │ │ │ │ ├── csr.project.status.project │ │ │ │ ├── csr.project.update │ │ │ │ ├── csr.project.update.project │ │ │ │ ├── csr.region │ │ │ │ ├── csr.save │ │ │ │ ├── csr.url │ │ │ │ ├── csr.wait │ │ │ │ ├── csr.zip │ │ │ │ ├── customization │ │ │ │ ├── customize.categoryid │ │ │ │ ├── customize.endpointid │ │ │ │ ├── defaults │ │ │ │ ├── dialog │ │ │ │ ├── dialog.advanced │ │ │ │ ├── dialog.bot │ │ │ │ ├── dialog.bot.continuous │ │ │ │ ├── dialog.bot.id │ │ │ │ ├── dialog.bot.input │ │ │ │ ├── dialog.bot.keyword │ │ │ │ ├── dialog.bot.once │ │ │ │ ├── dialog.bot.output │ │ │ │ ├── dialog.cc │ │ │ │ ├── dialog.customcommands │ │ │ │ ├── dialog.customcommands.appid │ │ │ │ ├── dialog.customcommands.continuous │ │ │ │ ├── dialog.customcommands.input │ │ │ │ ├── dialog.customcommands.keyword │ │ │ │ ├── dialog.customcommands.once │ │ │ │ ├── dialog.customcommands.output │ │ │ │ ├── dialog.examples │ │ │ │ ├── display.post.processing │ │ │ │ ├── documentation │ │ │ │ ├── endpoint │ │ │ │ ├── endpoint.examples │ │ │ │ ├── examples │ │ │ │ ├── foreach │ │ │ │ ├── help │ │ │ │ ├── hive │ │ │ │ ├── include.create.resource │ │ │ │ ├── include.create.resource.extra │ │ │ │ ├── include.spx.ascii.logo │ │ │ │ ├── include.spx.init.ascii.logo │ │ │ │ ├── include.the.azure.speech.service │ │ │ │ ├── include.the.azure.speech.service.long │ │ │ │ ├── include.the.config.command │ │ │ │ ├── include.the.csr.dataset.command │ │ │ │ ├── include.the.csr.dataset.create.command │ │ │ │ ├── include.the.csr.dataset.delete.command │ │ │ │ ├── include.the.csr.dataset.download.command │ │ │ │ ├── include.the.csr.dataset.list.command │ │ │ │ ├── include.the.csr.dataset.status.command │ │ │ │ ├── include.the.csr.dataset.update.command │ │ │ │ ├── include.the.csr.dataset.upload.command │ │ │ │ ├── include.the.csr.endpoint.command │ │ │ │ ├── include.the.csr.endpoint.create.command │ │ │ │ ├── include.the.csr.endpoint.delete.command │ │ │ │ ├── include.the.csr.endpoint.download.command │ │ │ │ ├── include.the.csr.endpoint.list.command │ │ │ │ ├── include.the.csr.endpoint.status.command │ │ │ │ ├── include.the.csr.endpoint.update.command │ │ │ │ ├── include.the.csr.evaluation.command │ │ │ │ ├── include.the.csr.evaluation.create.command │ │ │ │ ├── include.the.csr.evaluation.delete.command │ │ │ │ ├── include.the.csr.evaluation.list.command │ │ │ │ ├── include.the.csr.evaluation.status.command │ │ │ │ ├── include.the.csr.evaluation.update.command │ │ │ │ ├── include.the.csr.model.command │ │ │ │ ├── include.the.csr.model.copy.command │ │ │ │ ├── include.the.csr.model.create.command │ │ │ │ ├── include.the.csr.model.delete.command │ │ │ │ ├── include.the.csr.model.status.command │ │ │ │ ├── include.the.csr.model.update.command │ │ │ │ ├── include.the.csr.project.command │ │ │ │ ├── include.the.csr.project.create.command │ │ │ │ ├── include.the.csr.project.delete.command │ │ │ │ ├── include.the.csr.project.list.command │ │ │ │ ├── include.the.csr.project.status.command │ │ │ │ ├── include.the.csr.project.update.command │ │ │ │ ├── include.the.dialog.command │ │ │ │ ├── include.the.dialog.command.long │ │ │ │ ├── include.the.init.command.long │ │ │ │ ├── include.the.intent.command │ │ │ │ ├── include.the.intent.command.long │ │ │ │ ├── include.the.intent.method │ │ │ │ ├── include.the.key.option │ │ │ │ ├── include.the.key.option.where │ │ │ │ ├── include.the.log.option │ │ │ │ ├── include.the.luis.option │ │ │ │ ├── include.the.model.list.command │ │ │ │ ├── include.the.profile.command │ │ │ │ ├── include.the.profile.command.long │ │ │ │ ├── include.the.recognize.command │ │ │ │ ├── include.the.recognize.command.long │ │ │ │ ├── include.the.recognize.method │ │ │ │ ├── include.the.region.option │ │ │ │ ├── include.the.region.option.where │ │ │ │ ├── include.the.run.command │ │ │ │ ├── include.the.save.option │ │ │ │ ├── include.the.speaker.command │ │ │ │ ├── include.the.speaker.command.long │ │ │ │ ├── include.the.synthesize.command │ │ │ │ ├── include.the.synthesize.command.long │ │ │ │ ├── include.the.token.option │ │ │ │ ├── include.the.token.option.where │ │ │ │ ├── include.the.translate.command │ │ │ │ ├── include.the.translate.command.long │ │ │ │ ├── include.the.webjob.command │ │ │ │ ├── include.the.webjob.command.long │ │ │ │ ├── include.the.zip.option │ │ │ │ ├── init │ │ │ │ ├── init.advanced │ │ │ │ ├── init.examples │ │ │ │ ├── input │ │ │ │ ├── input.id │ │ │ │ ├── intent │ │ │ │ ├── intent.advanced │ │ │ │ ├── intent.connection │ │ │ │ ├── intent.continuous │ │ │ │ ├── intent.endpoint │ │ │ │ ├── intent.examples │ │ │ │ ├── intent.file │ │ │ │ ├── intent.files │ │ │ │ ├── intent.foreach │ │ │ │ ├── intent.format │ │ │ │ ├── intent.input │ │ │ │ ├── intent.key │ │ │ │ ├── intent.keyword │ │ │ │ ├── intent.language │ │ │ │ ├── intent.languages │ │ │ │ ├── intent.log │ │ │ │ ├── intent.luis │ │ │ │ ├── intent.luis.allintents │ │ │ │ ├── intent.luis.intent │ │ │ │ ├── intent.luis.key │ │ │ │ ├── intent.luis.region │ │ │ │ ├── intent.microphone │ │ │ │ ├── intent.once │ │ │ │ ├── intent.output │ │ │ │ ├── intent.output.accuracy │ │ │ │ ├── intent.output.all │ │ │ │ ├── intent.output.all.example │ │ │ │ ├── intent.output.all.file │ │ │ │ ├── intent.output.all.files │ │ │ │ ├── intent.output.all.json │ │ │ │ ├── intent.output.all.timing │ │ │ │ ├── intent.output.batch │ │ │ │ ├── intent.output.each │ │ │ │ ├── intent.output.examples │ │ │ │ ├── intent.output.file │ │ │ │ ├── intent.output.text │ │ │ │ ├── intent.output.vtt │ │ │ │ ├── intent.output.wer │ │ │ │ ├── intent.pattern │ │ │ │ ├── intent.patterns │ │ │ │ ├── intent.phrases │ │ │ │ ├── intent.processes │ │ │ │ ├── intent.profanity │ │ │ │ ├── intent.proxy │ │ │ │ ├── intent.region │ │ │ │ ├── intent.save │ │ │ │ ├── intent.testing │ │ │ │ ├── intent.threads │ │ │ │ ├── intent.token │ │ │ │ ├── intent.transcript │ │ │ │ ├── intent.url │ │ │ │ ├── intent.urls │ │ │ │ ├── intent.wer │ │ │ │ ├── intent.zip │ │ │ │ ├── internal │ │ │ │ ├── key │ │ │ │ ├── key.overview │ │ │ │ ├── keyword │ │ │ │ ├── language │ │ │ │ ├── log │ │ │ │ ├── luis.documentation │ │ │ │ ├── microphone │ │ │ │ ├── once │ │ │ │ ├── output │ │ │ │ ├── output.all │ │ │ │ ├── output.each │ │ │ │ ├── phrases │ │ │ │ ├── profanity │ │ │ │ ├── profile │ │ │ │ ├── profile.connection │ │ │ │ ├── profile.create │ │ │ │ ├── profile.delete │ │ │ │ ├── profile.documentation │ │ │ │ ├── profile.enroll │ │ │ │ ├── profile.examples │ │ │ │ ├── profile.file │ │ │ │ ├── profile.id │ │ │ │ ├── profile.key │ │ │ │ ├── profile.kind │ │ │ │ ├── profile.list │ │ │ │ ├── profile.output │ │ │ │ ├── profile.output.file │ │ │ │ ├── profile.output.id │ │ │ │ ├── profile.output.json │ │ │ │ ├── profile.region │ │ │ │ ├── profile.status │ │ │ │ ├── proxy │ │ │ │ ├── query.string │ │ │ │ ├── recognize │ │ │ │ ├── recognize.advanced │ │ │ │ ├── recognize.check.text │ │ │ │ ├── recognize.check.wer │ │ │ │ ├── recognize.connect │ │ │ │ ├── recognize.connection │ │ │ │ ├── recognize.continuous │ │ │ │ ├── recognize.custom.speech │ │ │ │ ├── recognize.default.connection.example │ │ │ │ ├── recognize.disconnect │ │ │ │ ├── recognize.endpoint │ │ │ │ ├── recognize.examples │ │ │ │ ├── recognize.file │ │ │ │ ├── recognize.files │ │ │ │ ├── recognize.foreach │ │ │ │ ├── recognize.format │ │ │ │ ├── recognize.improve.accuracy │ │ │ │ ├── recognize.input │ │ │ │ ├── recognize.key │ │ │ │ ├── recognize.keyword │ │ │ │ ├── recognize.language │ │ │ │ ├── recognize.languages │ │ │ │ ├── recognize.log │ │ │ │ ├── recognize.microphone │ │ │ │ ├── recognize.once │ │ │ │ ├── recognize.output │ │ │ │ ├── recognize.output.all │ │ │ │ ├── recognize.output.all.file │ │ │ │ ├── recognize.output.batch │ │ │ │ ├── recognize.output.batch.file │ │ │ │ ├── recognize.output.batch.json │ │ │ │ ├── recognize.output.each │ │ │ │ ├── recognize.output.each.file │ │ │ │ ├── recognize.output.examples │ │ │ │ ├── recognize.output.vtt │ │ │ │ ├── recognize.phrases │ │ │ │ ├── recognize.processes │ │ │ │ ├── recognize.profanity │ │ │ │ ├── recognize.proxy │ │ │ │ ├── recognize.region │ │ │ │ ├── recognize.save │ │ │ │ ├── recognize.testing │ │ │ │ ├── recognize.threads │ │ │ │ ├── recognize.token │ │ │ │ ├── recognize.transcript │ │ │ │ ├── recognize.url │ │ │ │ ├── recognize.urls │ │ │ │ ├── recognize.wer │ │ │ │ ├── recognize.word.level.timing │ │ │ │ ├── recognize.zip │ │ │ │ ├── region │ │ │ │ ├── region.overview │ │ │ │ ├── run │ │ │ │ ├── run.advanced │ │ │ │ ├── run.csx │ │ │ │ ├── run.examples │ │ │ │ ├── setup │ │ │ │ ├── source │ │ │ │ ├── speaker │ │ │ │ ├── speaker.connection │ │ │ │ ├── speaker.documentation │ │ │ │ ├── speaker.examples │ │ │ │ ├── speaker.file │ │ │ │ ├── speaker.id │ │ │ │ ├── speaker.identify │ │ │ │ ├── speaker.key │ │ │ │ ├── speaker.kind │ │ │ │ ├── speaker.language │ │ │ │ ├── speaker.region │ │ │ │ ├── speaker.verify │ │ │ │ ├── synthesize │ │ │ │ ├── synthesize.advanced │ │ │ │ ├── synthesize.audio │ │ │ │ ├── synthesize.audio.output │ │ │ │ ├── synthesize.audio.speakers │ │ │ │ ├── synthesize.connection │ │ │ │ ├── synthesize.endpoint │ │ │ │ ├── synthesize.examples │ │ │ │ ├── synthesize.file │ │ │ │ ├── synthesize.files │ │ │ │ ├── synthesize.foreach │ │ │ │ ├── synthesize.format │ │ │ │ ├── synthesize.format.mp3 │ │ │ │ ├── synthesize.format.ogg │ │ │ │ ├── synthesize.format.opus │ │ │ │ ├── synthesize.format.raw │ │ │ │ ├── synthesize.format.siren │ │ │ │ ├── synthesize.format.wav │ │ │ │ ├── synthesize.format.webm │ │ │ │ ├── synthesize.input │ │ │ │ ├── synthesize.interactive │ │ │ │ ├── synthesize.key │ │ │ │ ├── synthesize.list.voices │ │ │ │ ├── synthesize.log │ │ │ │ ├── synthesize.mp3 │ │ │ │ ├── synthesize.ogg │ │ │ │ ├── synthesize.opus │ │ │ │ ├── synthesize.output │ │ │ │ ├── synthesize.output.all │ │ │ │ ├── synthesize.output.all.file │ │ │ │ ├── synthesize.output.each │ │ │ │ ├── synthesize.output.each.file │ │ │ │ ├── synthesize.output.examples │ │ │ │ ├── synthesize.processes │ │ │ │ ├── synthesize.proxy │ │ │ │ ├── synthesize.raw │ │ │ │ ├── synthesize.region │ │ │ │ ├── synthesize.save │ │ │ │ ├── synthesize.siren │ │ │ │ ├── synthesize.ssml │ │ │ │ ├── synthesize.text │ │ │ │ ├── synthesize.threads │ │ │ │ ├── synthesize.token │ │ │ │ ├── synthesize.url │ │ │ │ ├── synthesize.urls │ │ │ │ ├── synthesize.voice │ │ │ │ ├── synthesize.wav │ │ │ │ ├── synthesize.webm │ │ │ │ ├── synthesize.zip │ │ │ │ ├── target │ │ │ │ ├── token │ │ │ │ ├── traffic.type │ │ │ │ ├── translate │ │ │ │ ├── translate.advanced │ │ │ │ ├── translate.check.text │ │ │ │ ├── translate.check.wer │ │ │ │ ├── translate.connect │ │ │ │ ├── translate.connection │ │ │ │ ├── translate.continuous │ │ │ │ ├── translate.custom.speech │ │ │ │ ├── translate.custom.translation │ │ │ │ ├── translate.disconnect │ │ │ │ ├── translate.endpoint │ │ │ │ ├── translate.examples │ │ │ │ ├── translate.file │ │ │ │ ├── translate.files │ │ │ │ ├── translate.foreach │ │ │ │ ├── translate.format │ │ │ │ ├── translate.input │ │ │ │ ├── translate.key │ │ │ │ ├── translate.keyword │ │ │ │ ├── translate.language │ │ │ │ ├── translate.log │ │ │ │ ├── translate.microphone │ │ │ │ ├── translate.once │ │ │ │ ├── translate.output │ │ │ │ ├── translate.output.all │ │ │ │ ├── translate.output.all.file │ │ │ │ ├── translate.output.batch │ │ │ │ ├── translate.output.batch.file │ │ │ │ ├── translate.output.batch.json │ │ │ │ ├── translate.output.each │ │ │ │ ├── translate.output.each.file │ │ │ │ ├── translate.output.examples │ │ │ │ ├── translate.phrases │ │ │ │ ├── translate.processes │ │ │ │ ├── translate.profanity │ │ │ │ ├── translate.proxy │ │ │ │ ├── translate.region │ │ │ │ ├── translate.save │ │ │ │ ├── translate.threads │ │ │ │ ├── translate.token │ │ │ │ ├── translate.transcript │ │ │ │ ├── translate.url │ │ │ │ ├── translate.urls │ │ │ │ ├── translate.word.level.timing │ │ │ │ ├── translate.zip │ │ │ │ ├── tutorials │ │ │ │ ├── usage │ │ │ │ ├── webjob │ │ │ │ ├── webjob.advanced │ │ │ │ ├── webjob.connection │ │ │ │ ├── webjob.delete │ │ │ │ ├── webjob.download │ │ │ │ ├── webjob.endpoint │ │ │ │ ├── webjob.examples │ │ │ │ ├── webjob.execution │ │ │ │ ├── webjob.foreach │ │ │ │ ├── webjob.list │ │ │ │ ├── webjob.list.jobs │ │ │ │ ├── webjob.password │ │ │ │ ├── webjob.resources │ │ │ │ ├── webjob.results │ │ │ │ ├── webjob.run │ │ │ │ ├── webjob.setup │ │ │ │ ├── webjob.status │ │ │ │ ├── webjob.upload │ │ │ │ ├── websocket.messages │ │ │ │ └── zip │ │ ├── BuildCommon.targets │ │ ├── HowToCompileWithInternalSpeechSDK.md │ │ ├── HowToCompileWithPrivateSpeechSDK.md │ │ ├── HowToRunEmbeddedSpeech.md │ │ ├── LICENSE.txt │ │ ├── Microsoft.CognitiveServices.Speech.CLI-Dependency.targets │ │ ├── NuGet.Config │ │ ├── Program_SPX.cs │ │ ├── Properties │ │ │ └── PublishProfiles │ │ │ │ ├── folder publish spx-cli debug (linux-x64).pubxml │ │ │ │ ├── folder publish spx-cli debug (osx-64).pubxml │ │ │ │ ├── folder publish spx-cli debug (win-x64).pubxml │ │ │ │ ├── folder publish spx-cli release (linux-x64).pubxml │ │ │ │ ├── folder publish spx-cli release (osx-64).pubxml │ │ │ │ └── folder publish spx-cli release (win-x64).pubxml │ │ ├── THIRD_PARTY_NOTICE.txt │ │ ├── app.manifest │ │ ├── ci │ │ │ ├── Dockerfile │ │ │ ├── build-all.sh │ │ │ ├── build-local-from-cmake-output.cmd │ │ │ ├── build-local-from-nuget-download.cmd │ │ │ ├── help-topic-crosscheck.sh │ │ │ ├── spx-build-pipeline.yml │ │ │ └── spx-test-pipeline.yml │ │ ├── images │ │ │ └── SPX_Build_Variables.jpg │ │ ├── packages.lock.json │ │ ├── spx-cli.csproj │ │ ├── spx-cli.sln │ │ ├── spx.dev.new.todo.md │ │ ├── tests │ │ │ ├── audio_and_trans.zip │ │ │ ├── check-all.cmd │ │ │ ├── check-batch.cmd │ │ │ ├── check-cli.cmd │ │ │ ├── check-csr.cmd │ │ │ ├── check-help.cmd │ │ │ ├── check-stress-test.cmd │ │ │ ├── cli │ │ │ │ ├── commands │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.local.name227266.1.set.test │ │ │ │ │ │ ├── config.local.name227266.1.set.test.run.output.expected │ │ │ │ │ │ ├── config.local.name227266.2.get.test │ │ │ │ │ │ ├── config.local.name227266.2.get.test.run.output.expected │ │ │ │ │ │ ├── config.local.name227266.3.find.test │ │ │ │ │ │ ├── config.local.name227266.3.find.test.run.output.expected │ │ │ │ │ │ ├── config.local.name227266.4.add.test │ │ │ │ │ │ ├── config.local.name227266.4.add.test.run.output.expected │ │ │ │ │ │ ├── config.local.name227266.5.clear.test │ │ │ │ │ │ ├── config.local.name227266.5.clear.test.run.output.expected │ │ │ │ │ │ ├── config.usage.test │ │ │ │ │ │ └── config.usage.test.run.output.expected │ │ │ │ │ └── webjob │ │ │ │ │ │ ├── webjob.download.name.id.request.test │ │ │ │ │ │ ├── webjob.download.name.id.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.download.name.request.test │ │ │ │ │ │ ├── webjob.download.name.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.download.null.request.test │ │ │ │ │ │ ├── webjob.download.null.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.list.job.run.files.request.test │ │ │ │ │ │ ├── webjob.list.job.run.files.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.list.job.runs.request.test │ │ │ │ │ │ ├── webjob.list.job.runs.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.list.jobs.request.test │ │ │ │ │ │ ├── webjob.list.jobs.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.run.request.test │ │ │ │ │ │ ├── webjob.run.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.status.request.test │ │ │ │ │ │ ├── webjob.status.request.test.run.output.expect │ │ │ │ │ │ ├── webjob.upload.request.step1.test.run.output.expect │ │ │ │ │ │ ├── webjob.upload.request.step1.test.skip │ │ │ │ │ │ ├── webjob.upload.request.step2.test.run.output.expect │ │ │ │ │ │ └── webjob.upload.request.step2.test.skip │ │ │ │ └── diagnostics │ │ │ │ │ ├── recognize.hello.path.term.dtor.test │ │ │ │ │ ├── recognize.hello.path.term.dtor.test.x.command.diagnostics.log.expected │ │ │ │ │ ├── translate.hello.path.term.dtor.test │ │ │ │ │ └── translate.hello.path.term.dtor.test.x.command.diagnostics.log.expect │ │ │ ├── pronunciation.txt │ │ │ ├── related_text.txt │ │ │ ├── sentences.txt │ │ │ ├── stress-text.txt │ │ │ ├── test │ │ │ ├── test.batch │ │ │ ├── test.batch.transcription.1.job │ │ │ ├── test.batch.transcription.2.job │ │ │ ├── test.batch.transcription.2.job.foreach.0.tsv.file │ │ │ ├── test.foreach.stress.tsv.file │ │ │ ├── test.intent.1.job │ │ │ ├── test.intent.2.job │ │ │ ├── test.intent.3.job │ │ │ ├── test.intent.4.job │ │ │ ├── test.intent.setup.ChangeReco │ │ │ ├── test.stress │ │ │ ├── test.stress.recognize.1.job │ │ │ ├── test.stress.synthesize.1.job │ │ │ ├── test.stress.synthesize.1.job.foreach.0.tsv.file │ │ │ ├── test.stress.translate.1.job │ │ │ ├── test.tsv │ │ │ ├── this.is.a.test.of.the.emergency.broadcast.system.txt │ │ │ └── this.is.a.test.txt │ │ └── todo.md │ └── vz │ │ ├── .x │ │ ├── config │ │ │ ├── connection │ │ │ ├── connection.from.endpoint │ │ │ ├── connection.from.host │ │ │ ├── connection.from.region │ │ │ ├── default.log │ │ │ ├── default.path │ │ │ ├── defaults │ │ │ ├── endpoint │ │ │ ├── fiddler │ │ │ ├── host │ │ │ ├── image.default.config │ │ │ ├── image.default.connection │ │ │ ├── image.default.output │ │ │ ├── image.output.all.standard │ │ │ ├── image.region │ │ │ ├── init.default.config │ │ │ ├── init.default.output │ │ │ ├── input.path │ │ │ ├── key │ │ │ ├── log.pid │ │ │ ├── log.time │ │ │ ├── log.time.pid │ │ │ ├── my.defaults │ │ │ ├── none │ │ │ ├── output │ │ │ ├── output.all.standard │ │ │ ├── person.default.config │ │ │ ├── person.default.connection │ │ │ ├── person.default.output │ │ │ ├── person.output.all.standard │ │ │ ├── region │ │ │ ├── run.default.config │ │ │ └── vz.defaults │ │ └── help │ │ │ ├── config │ │ │ ├── config.add │ │ │ ├── config.advanced │ │ │ ├── config.clear │ │ │ ├── config.command │ │ │ ├── config.examples │ │ │ ├── config.find │ │ │ ├── config.hive │ │ │ ├── config.region │ │ │ ├── config.scope │ │ │ ├── config.set │ │ │ ├── documentation │ │ │ ├── endpoint │ │ │ ├── examples │ │ │ ├── face │ │ │ ├── face.identify │ │ │ ├── face.identify.examples │ │ │ ├── face.verify │ │ │ ├── face.verify.examples │ │ │ ├── help │ │ │ ├── hive │ │ │ ├── image │ │ │ ├── image.analyze │ │ │ ├── image.analyze.examples │ │ │ ├── image.read │ │ │ ├── image.read.examples │ │ │ ├── include.create.resource │ │ │ ├── include.create.resource.extra │ │ │ ├── include.the.azure.vision.service │ │ │ ├── include.the.azure.vision.service.long │ │ │ ├── include.the.config.command │ │ │ ├── include.the.face.command.long │ │ │ ├── include.the.face.identify.command │ │ │ ├── include.the.face.identify.command.long │ │ │ ├── include.the.face.verify.command │ │ │ ├── include.the.face.verify.command.long │ │ │ ├── include.the.image.analyze.command │ │ │ ├── include.the.image.analyze.command.long │ │ │ ├── include.the.image.command.long │ │ │ ├── include.the.image.read.command │ │ │ ├── include.the.image.read.command.long │ │ │ ├── include.the.init.command.long │ │ │ ├── include.the.key.option │ │ │ ├── include.the.key.option.where │ │ │ ├── include.the.log.option │ │ │ ├── include.the.person.create.command │ │ │ ├── include.the.person.delete.command │ │ │ ├── include.the.person.face.add.command │ │ │ ├── include.the.person.face.delete.command │ │ │ ├── include.the.person.face.list.command │ │ │ ├── include.the.person.face.update.command │ │ │ ├── include.the.person.group.create.command │ │ │ ├── include.the.person.group.delete.command │ │ │ ├── include.the.person.group.list.command │ │ │ ├── include.the.person.group.status.command │ │ │ ├── include.the.person.group.train.command │ │ │ ├── include.the.person.group.update.command │ │ │ ├── include.the.person.list.command │ │ │ ├── include.the.person.update.command │ │ │ ├── include.the.region.option │ │ │ ├── include.the.region.option.where │ │ │ ├── include.the.run.command │ │ │ ├── include.the.save.option │ │ │ ├── include.the.token.option │ │ │ ├── include.the.token.option.where │ │ │ ├── include.the.zip.option │ │ │ ├── include.vz.ascii.logo │ │ │ ├── include.vz.init.ascii.logo │ │ │ ├── init │ │ │ ├── init.advanced │ │ │ ├── init.examples │ │ │ ├── key │ │ │ ├── key.overview │ │ │ ├── person │ │ │ ├── person.create │ │ │ ├── person.create.advanced │ │ │ ├── person.delete │ │ │ ├── person.delete.advanced │ │ │ ├── person.examples │ │ │ ├── person.face │ │ │ ├── person.face.add │ │ │ ├── person.face.add.advanced │ │ │ ├── person.face.delete │ │ │ ├── person.face.delete.advanced │ │ │ ├── person.face.list │ │ │ ├── person.face.list.advanced │ │ │ ├── person.face.update │ │ │ ├── person.face.update.advanced │ │ │ ├── person.group │ │ │ ├── person.group.create │ │ │ ├── person.group.create.advanced │ │ │ ├── person.group.delete │ │ │ ├── person.group.delete.advanced │ │ │ ├── person.group.list │ │ │ ├── person.group.list.advanced │ │ │ ├── person.group.status │ │ │ ├── person.group.status.advanced │ │ │ ├── person.group.train │ │ │ ├── person.group.train.advanced │ │ │ ├── person.group.update │ │ │ ├── person.group.update.advanced │ │ │ ├── person.list │ │ │ ├── person.list.advanced │ │ │ ├── person.update │ │ │ ├── person.update.advanced │ │ │ ├── region │ │ │ ├── region.overview │ │ │ ├── run │ │ │ ├── run.advanced │ │ │ ├── run.examples │ │ │ ├── setup │ │ │ └── usage │ │ ├── BuildCommon.targets │ │ ├── LICENSE.txt │ │ ├── NuGet.Config │ │ ├── Program_VZ.cs │ │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── folder publish vz-cli debug (linux-x64).pubxml │ │ │ ├── folder publish vz-cli debug (osx-64).pubxml │ │ │ ├── folder publish vz-cli debug (win-x64).pubxml │ │ │ ├── folder publish vz-cli release (linux-x64).pubxml │ │ │ ├── folder publish vz-cli release (osx-64).pubxml │ │ │ └── folder publish vz-cli release (win-x64).pubxml │ │ └── launchSettings.json │ │ ├── THIRD_PARTY_NOTICE.txt │ │ ├── app.manifest │ │ ├── ci │ │ ├── build-all.cmd │ │ ├── build-all.sh │ │ ├── build-linux-x64.cmd │ │ ├── build-win-x64.cmd │ │ ├── publish-linux-x64.cmd │ │ ├── publish-win-x64.cmd │ │ ├── vz-build-pipeline.yml │ │ └── vz-test-pipeline.yml │ │ ├── commands │ │ ├── face_command.cs │ │ ├── image_command.cs │ │ ├── parsers │ │ │ ├── common_vision_token_parsers.cs │ │ │ ├── face_command_parser.cs │ │ │ ├── image_command_parser.cs │ │ │ └── person_command_parser.cs │ │ └── person_command.cs │ │ ├── face.cli.person.ideas.md │ │ ├── helpers │ │ ├── display_helpers.cs │ │ └── event_logger_helpers.cs │ │ ├── packages.lock.json │ │ ├── tests │ │ ├── check-all.cmd │ │ ├── check-cli.cmd │ │ └── cli │ │ │ ├── base │ │ │ ├── help.documentation.test │ │ │ ├── help.documentation.test.run.output.expected │ │ │ ├── help.examples.test │ │ │ ├── help.examples.test.run.output.expected │ │ │ ├── help.setup.test │ │ │ ├── help.setup.test.run.output.expected │ │ │ ├── help.test │ │ │ ├── help.test.run.output.expected │ │ │ ├── usage.test │ │ │ └── usage.test.run.output.expected │ │ │ └── commands │ │ │ └── config │ │ │ ├── config.local.name227266.1.set.test │ │ │ ├── config.local.name227266.1.set.test.run.output.expected │ │ │ ├── config.local.name227266.2.get.test │ │ │ ├── config.local.name227266.2.get.test.run.output.expected │ │ │ ├── config.local.name227266.3.find.test │ │ │ ├── config.local.name227266.3.find.test.run.output.expected │ │ │ ├── config.local.name227266.4.add.test │ │ │ ├── config.local.name227266.4.add.test.run.output.expected │ │ │ ├── config.local.name227266.5.clear.test │ │ │ ├── config.local.name227266.5.clear.test.run.output.expected │ │ │ ├── config.usage.test │ │ │ └── config.usage.test.run.output.expected │ │ └── vz-cli.csproj ├── common │ ├── BuildCommon.targets │ ├── IEventLoggerHelpers.cs │ ├── IProgramData.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Telemetry │ │ ├── Events │ │ │ ├── CommandTelemetryEvent.cs │ │ │ ├── ExitedTelemetryEvent.cs │ │ │ ├── InitTelemetryEvent.cs │ │ │ ├── LaunchedTelemetryEvent.cs │ │ │ └── VerifySavedConfigTelemetryEvent.cs │ │ ├── ITelemetry.cs │ │ ├── NoOpTelemetry.cs │ │ ├── Outcome.cs │ │ └── PiiAttribute.cs │ ├── common.csproj │ └── details │ │ ├── ai_python_generative_sdk │ │ ├── AiSdkConsoleGui.cs │ │ ├── AiSdkConsoleGui_PickOrCreateAiHubResource.cs │ │ ├── AiSdkConsoleGui_PickOrCreate_AiHubProject.cs │ │ └── python_sdk_wrapper.cs │ │ ├── azcli │ │ ├── AzCli.cs │ │ ├── AzCliConsoleGui.cs │ │ ├── AzCliConsoleGui_CognitiveServicesResourceDeploymentPicker.cs │ │ ├── AzCliConsoleGui_CognitiveServicesResourcePicker.cs │ │ ├── AzCliConsoleGui_PickOrCreateAndConfig_CogSearchResource.cs │ │ ├── AzCliConsoleGui_PickOrCreateAndConfig_CognitiveServicesResource_AiServicesKind.cs │ │ ├── AzCliConsoleGui_PickOrCreateAndConfig_CognitiveServicesResource_CognitiveServicesKind.cs │ │ ├── AzCliConsoleGui_PickOrCreateAndConfig_CognitiveServicesResource_OpenAiKind.cs │ │ ├── AzCliConsoleGui_PickOrCreateAndConfig_CognitiveServicesResource_SpeechKind.cs │ │ ├── AzCliConsoleGui_RegionLocationPicker.cs │ │ ├── AzCliConsoleGui_ResourceGroupPicker.cs │ │ └── AzCliConsoleGui_SubscriptionPicker.cs │ │ ├── commands │ │ ├── command.cs │ │ ├── command_values.cs │ │ ├── config_command.cs │ │ ├── parsers │ │ │ ├── command_parser.cs │ │ │ ├── common_token_parsers.cs │ │ │ ├── config_command_parser.cs │ │ │ ├── help_command_parser.cs │ │ │ └── runjob_command_parser.cs │ │ └── runjob_command.cs │ │ ├── console │ │ ├── ColorHelpers.cs │ │ ├── ConsoleHelpers.cs │ │ ├── ConsoleKeyInfoExtensions.cs │ │ ├── gui │ │ │ ├── Colors.cs │ │ │ ├── Cursor.cs │ │ │ ├── Rect.cs │ │ │ ├── Screen.cs │ │ │ ├── Window.cs │ │ │ └── controls │ │ │ │ ├── Control.cs │ │ │ │ ├── EditBoxControl.cs │ │ │ │ ├── EditBoxQuickEdit.cs │ │ │ │ ├── HelpViewer.cs │ │ │ │ ├── InOutPipeServer.cs │ │ │ │ ├── ListBoxControl.cs │ │ │ │ ├── ListBoxPicker.cs │ │ │ │ ├── ScrollingControl.cs │ │ │ │ ├── SpeedSearchListBoxControl.cs │ │ │ │ ├── TextViewerControl.cs │ │ │ │ └── VirtualListBoxControl.cs │ │ └── gui_helpers │ │ │ ├── ask_prompt_helper.cs │ │ │ └── name_picker_helpers.cs │ │ ├── helpers │ │ ├── EventSourceHelpers.cs │ │ ├── cli_helpers.cs │ │ ├── config_set_helpers.cs │ │ ├── error_helpers.cs │ │ ├── expect_helper.cs │ │ ├── file_helpers.cs │ │ ├── http_helpers.cs │ │ ├── json_helpers.cs │ │ ├── log_helpers.cs │ │ ├── login_helpers.cs │ │ ├── os.cs │ │ ├── process_helpers.cs │ │ ├── python_runner.cs │ │ ├── spin_lock.cs │ │ ├── stream_reader_extensions.cs │ │ ├── string_helpers.cs │ │ ├── text_writer_read_line_line_helper.cs │ │ ├── try_catch_helpers.cs │ │ ├── url_helpers.cs │ │ └── value_helpers.cs │ │ ├── named_values │ │ ├── environment_named_values.cs │ │ ├── named_value_tokens.cs │ │ ├── named_values.cs │ │ ├── parsers │ │ │ ├── any_1_or_2_value_named_value_token_parser.cs │ │ │ ├── any_1_pinned_named_value_token_parser.cs │ │ │ ├── any_1_value_named_value_token_parser.cs │ │ │ ├── arg_x_token_parser.cs │ │ │ ├── at_file_or_list_named_value_token_parser.cs │ │ │ ├── at_file_or_list_with_pinned_value_named_value_token_parser.cs │ │ │ ├── expand_file_name_named_value_token_parser.cs │ │ │ ├── for_each_token_parser.cs │ │ │ ├── ini_file_named_value_token_parser.cs │ │ │ ├── input_wildcard_token_parser.cs │ │ │ ├── named_value_token_parser.cs │ │ │ ├── named_value_token_parser_helpers.cs │ │ │ ├── named_value_token_parser_list.cs │ │ │ ├── option_x_token_parser.cs │ │ │ ├── optional_valid_value_named_value_token_parser.cs │ │ │ ├── optional_with_default_named_value_token_parser.cs │ │ │ ├── output_file_name_named_value_token_parser.cs │ │ │ ├── pinned_named_value_token_parser.cs │ │ │ ├── replace_for_each_token_parser.cs │ │ │ ├── required_valid_value_named_value_token_parser.cs │ │ │ └── true_false_named_value_token_parser.cs │ │ ├── sources │ │ │ ├── cmd_line_token_source.cs │ │ │ ├── ini_line_token_source.cs │ │ │ └── tsv_row_token_source.cs │ │ └── tokens │ │ │ ├── BlobContainerToken.cs │ │ │ ├── OutputResultsFileToken.cs │ │ │ ├── OutputResultsFormatToken.cs │ │ │ ├── ResourceIdToken.cs │ │ │ ├── ai_services_api_key_token.cs │ │ │ ├── arg_x_token.cs │ │ │ ├── chat_evaluation_model_deployment_name_token.cs │ │ │ ├── chat_evaluation_model_name_token.cs │ │ │ ├── chat_model_name_token.cs │ │ │ ├── chat_model_path_token.cs │ │ │ ├── code_interpreter_true_false_token.cs │ │ │ ├── cognitiveservices_resource_kind_token.cs │ │ │ ├── conatins_option_x_token.cs │ │ │ ├── config_deployment_token.cs │ │ │ ├── config_endpoint_type_token.cs │ │ │ ├── config_endpoint_uri_token.cs │ │ │ ├── delete_dependent_resources_token.cs │ │ │ ├── docker_build_context_token.cs │ │ │ ├── environment_variables_token.cs │ │ │ ├── external_source_token.cs │ │ │ ├── file_id_option_x_token.cs │ │ │ ├── file_ids_option_x_token.cs │ │ │ ├── file_option_x_token.cs │ │ │ ├── file_search_true_false_token.cs │ │ │ ├── files_option_x_token.cs │ │ │ ├── host_token.cs │ │ │ ├── index_content_field_name_token.cs │ │ │ ├── index_id_field_name_token.cs │ │ │ ├── index_vector_field_name_token.cs │ │ │ ├── input_chat_history_file_token.cs │ │ │ ├── input_chat_parameter_file_token.cs │ │ │ ├── input_data_file_token.cs │ │ │ ├── input_wildcard_token.cs │ │ │ ├── instructions_token.cs │ │ │ ├── named_value_token_data.cs │ │ │ ├── named_value_token_data_helpers.cs │ │ │ ├── output_add_chat_answer_file_token.cs │ │ │ ├── output_chat_answer_file_token.cs │ │ │ ├── output_chat_history_file_token.cs │ │ │ ├── port_token.cs │ │ │ ├── programming_language_token.cs │ │ │ ├── project_connection_endpoint.cs │ │ │ ├── project_connection_key_token.cs │ │ │ ├── project_connection_name.cs │ │ │ ├── project_connection_type_token.cs │ │ │ ├── project_description_token.cs │ │ │ ├── project_display_name_token.cs │ │ │ ├── project_name_token.cs │ │ │ ├── region_location_token.cs │ │ │ ├── remove_option_x_token.cs │ │ │ ├── resource_description_token.cs │ │ │ ├── resource_display_name_token.cs │ │ │ ├── resource_group_name_token.cs │ │ │ ├── resource_name_token.cs │ │ │ ├── run_bash_script_token.cs │ │ │ ├── run_command_script_token.cs │ │ │ ├── search_embedding_model_deployment_name_token.cs │ │ │ ├── search_embedding_model_name_token.cs │ │ │ ├── search_index_name_token.cs │ │ │ ├── search_indexer_data_source_connection_name_token.cs │ │ │ ├── search_indexer_data_source_connection_string_token.cs │ │ │ ├── search_indexer_data_source_container_name_token.cs │ │ │ ├── search_indexer_name_token.cs │ │ │ ├── search_indexer_skillset_name_token.cs │ │ │ ├── search_option_x_token.cs │ │ │ ├── subscription_token.cs │ │ │ ├── system_prompt_template_token.cs │ │ │ ├── test_option_x_token.cs │ │ │ └── tests_option_x_token.cs │ │ └── native_logging │ │ ├── AIDEBUG.cs │ │ ├── DiagnosticsInterop.cs │ │ ├── DisposableBase.cs │ │ ├── NativeMemory.cs │ │ ├── NativeUtils.cs │ │ └── SpeechNativeMethods.cs ├── extensions │ ├── helper_functions_extension │ │ ├── BuildCommon.targets │ │ ├── CalculatorHelperFunctions.cs │ │ ├── DateTimeHelperFunctions.cs │ │ ├── FileHelperFunctions.cs │ │ ├── HelperFunctionCallContext.cs │ │ ├── HelperFunctionDescriptionAttribute.cs │ │ ├── HelperFunctionFactory.cs │ │ ├── HelperFunctionParameterDescriptionAttribute.cs │ │ ├── ProcessExecutionHelperFunctions.cs │ │ ├── RunPythonHelperFunction.cs │ │ └── helper_functions_extension.csproj │ ├── inference_extension │ │ ├── AzureAIInferenceChatCompletionsStreaming.cs │ │ ├── AzureInferenceHelpers.cs │ │ ├── BuildCommon.targets │ │ └── inference_extension.csproj │ ├── onnx_extension │ │ ├── BuildCommon.targets │ │ ├── ONNXGenAIHelpers.cs │ │ ├── OnnxGenAIChatCompletionsStreamingClass.cs │ │ └── onnx_extension.csproj │ ├── speech_extension │ │ ├── BuildCommon.targets │ │ ├── commands │ │ │ ├── base │ │ │ │ └── recognize_commands_base.cs │ │ │ ├── batch_command.cs │ │ │ ├── custom_speech_recognition_command.cs │ │ │ ├── dialog_command.cs │ │ │ ├── intent_command.cs │ │ │ ├── parsers │ │ │ │ ├── batch_command_parser.cs │ │ │ │ ├── bot_command_parser.cs │ │ │ │ ├── common_output_token_parsers.cs │ │ │ │ ├── common_speech_token_parsers.cs │ │ │ │ ├── custom_speech_recognition_command_parser.cs │ │ │ │ ├── dialog_command_parser.cs │ │ │ │ ├── intent_command_parser.cs │ │ │ │ ├── profile_command_parser.cs │ │ │ │ ├── recognize_command_parser.cs │ │ │ │ ├── synthesize_command_parser.cs │ │ │ │ ├── transcribe_command_parser.cs │ │ │ │ ├── translate_command_parser.cs │ │ │ │ └── webjob_command_parser.cs │ │ │ ├── profile_command.cs │ │ │ ├── recognize_command.cs │ │ │ ├── synthesize_command.cs │ │ │ ├── transcribe_command.cs │ │ │ ├── translate_command.cs │ │ │ └── webjob_command.cs │ │ ├── helpers │ │ │ ├── audio_helpers.cs │ │ │ ├── caption_helper.cs │ │ │ ├── config_helpers.cs │ │ │ ├── connection_helpers.cs │ │ │ ├── display_helpers.cs │ │ │ ├── event_logger_helpers.cs │ │ │ ├── output_helper.cs │ │ │ └── wer_helpers.cs │ │ └── speech-extension.csproj │ ├── template_extension │ │ ├── BuildCommon.targets │ │ ├── DevNewTemplateGroup.cs │ │ ├── DevNewTemplateGroupList.cs │ │ ├── DevNewTemplateItem.cs │ │ ├── ExpressionCalculator.cs │ │ ├── TemplateFactory.cs │ │ ├── TemplateHelpers.cs │ │ └── template_extension.csproj │ └── testframework │ │ ├── IYamlTestFrameworkHost.cs │ │ ├── IYamlTestFrameworkLogger.cs │ │ ├── JunitXmlTestReporter.cs │ │ ├── Logger.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── PropertyInterpolationHelpers.cs │ │ ├── README.md │ │ ├── RunnableTestCase.cs │ │ ├── RunnableTestCaseItem.cs │ │ ├── TestResultHelpers.cs │ │ ├── TestRun.cs │ │ ├── TimeSpanFormatter.cs │ │ ├── TrxXmlTestReporter.cs │ │ ├── YamlEnvHelpers.cs │ │ ├── YamlHelpers.cs │ │ ├── YamlNodeExtensions.cs │ │ ├── YamlTagHelpers.cs │ │ ├── YamlTestCaseFilter.cs │ │ ├── YamlTestCaseMatrixHelper.cs │ │ ├── YamlTestCaseParseContext.cs │ │ ├── YamlTestCaseParser.cs │ │ ├── YamlTestCaseRunner.cs │ │ ├── YamlTestConfigHelpers.cs │ │ ├── YamlTestFramework.cs │ │ ├── YamlTestFramework.csproj │ │ ├── YamlTestFrameworkCommon.targets │ │ ├── YamlTestFrameworkConsoleHost.cs │ │ ├── YamlTestFrameworkTestAdapterMessageLogger.cs │ │ └── YamlTestProperties.cs ├── installer │ └── windows │ │ ├── WixBuildInstaller.cmd │ │ ├── ai.wxs │ │ ├── license.rtf │ │ └── ui.wxs ├── telemetry │ ├── NuGet.config │ └── aria │ │ ├── AriaEventSerializer.cs │ │ ├── AriaTelemetry.cs │ │ └── telemetry.aria.csproj └── testing │ ├── adapters │ ├── recordingadapter │ │ ├── README.md │ │ ├── RecordedTestAdapterTest.runsettings │ │ ├── RecordedTestDiscoverer.cs │ │ ├── RecordedTestExecutor.cs │ │ ├── RecordedTestMode.cs │ │ ├── RecordedTestObserver.cs │ │ ├── RecordedYamlTestAdapter.cs │ │ ├── RecordedYamlTestAdapter.csproj │ │ ├── RecordedYamlTestAdapterCommon.targets │ │ ├── RecordedYamlTestRunnerTriggerAttribute.cs │ │ └── TestProxyClient.cs │ ├── recordproxy │ │ ├── Dockerfile │ │ ├── Dockerfile.base │ │ ├── dev_insall.cmd │ │ ├── headers.lua │ │ ├── issue_cert.sh │ │ ├── nginx.conf │ │ ├── openssl-ca.conf │ │ └── storage.lua │ └── testadapter │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── README.md │ │ ├── TestAdapterTest.runsettings │ │ ├── TestDiscoverer.cs │ │ ├── TestExecutor.cs │ │ ├── YamlTestAdapter.cs │ │ ├── YamlTestAdapter.csproj │ │ ├── YamlTestAdapterCommon.targets │ │ ├── YamlTestFrameworkHandleHost.cs │ │ └── YamlTestRunnerTriggerAttribute.cs │ ├── runner │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── YamlTestRunner.csproj │ └── YamlTestRunnerCommon.targets │ └── samples │ └── helper_functions_sample_project │ ├── BuildCommon.targets │ ├── PersonAgeFunctionHelperTest.cs │ └── test_helper_functions_extension.csproj └── tests ├── Azure-AI-CLI-TestFramework-Default-Tags.yaml ├── ai_chat_tests.yaml ├── audio ├── de-de │ └── howistheweather.wav ├── es-es │ └── howstheweather.wav ├── hello.wav ├── katiesteve_mono.wav └── profanity.wav ├── basic-no-inputs.prompty ├── basic.prompty ├── chat-history-basic.jsonl ├── chat-history-function.jsonl ├── image-analysis-sample.jpg ├── recordings ├── yaml.ai_chat_tests.Test AI Chat history.TestCases.01.test ai chat history save.json ├── yaml.ai_chat_tests.Test AI Chat history.TestCases.02.test ai chat history save with function calls.json ├── yaml.ai_chat_tests.Test AI Chat history.TestCases.03.Test AI Chat with restored history file (basic).json ├── yaml.ai_chat_tests.Test AI Chat history.TestCases.04.Test AI Chat with restored history file (function calls).json ├── yaml.ai_chat_tests.TestCases.test ai chat built in functions.json ├── yaml.ai_chat_tests.TestCases.test ai chat.json ├── yaml.ai_chat_tests.ai init.TestCases.ai init openai deployments.json ├── yaml.ai_chat_tests.ai init.TestCases.ai init speech.json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.01.test ai IA caption.json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.01.test ai IA.json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.02.test ai IA caption (Visual Features are case insensitive).json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.03.test ai IA Multiple Visual Features.json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.04.test ai IA caption (gender neutral).json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.05.test ai IA Model selection.json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.06.test ai IA from file.json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.07.test ai IA smart crop (single).json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.08.test ai IA smart crop (multiple).json ├── yaml.test_ai_vision.Test AI Vision Image Analysis.TestCases.09.test ai IA caption (JSON).json └── yaml.test_ai_vision.ai init.TestCases.ai init vision.json ├── sample.json ├── test-speech.yaml ├── test-yaml-element-env.yaml ├── test.yaml ├── test2.yaml ├── test3.yaml └── test_ai_vision.yaml /.aitests/config: -------------------------------------------------------------------------------- 1 | testDirectory: ../tests 2 | -------------------------------------------------------------------------------- /.azure/pipelines/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.azure/pipelines/build.yaml -------------------------------------------------------------------------------- /.azure/pipelines/sign-dll-exe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.azure/pipelines/sign-dll-exe.yaml -------------------------------------------------------------------------------- /.azure/pipelines/sign-nuget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.azure/pipelines/sign-nuget.yaml -------------------------------------------------------------------------------- /.azure/pipelines/test_setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.azure/pipelines/test_setup.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.{sh} text eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @robch 2 | -------------------------------------------------------------------------------- /.github/compliance/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.github/compliance/inventory.yml -------------------------------------------------------------------------------- /.github/workflows/build-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.github/workflows/build-package.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.sscignore: -------------------------------------------------------------------------------- 1 | { "cfs": ["CFS0013"] } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /ai-cli.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ai-cli.sln -------------------------------------------------------------------------------- /dockerfiles/debian10.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/dockerfiles/debian10.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/debian11.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/dockerfiles/debian11.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/debian12.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/dockerfiles/debian12.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/ubuntu2004.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/dockerfiles/ubuntu2004.Dockerfile -------------------------------------------------------------------------------- /dockerfiles/ubuntu2204.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/dockerfiles/ubuntu2204.Dockerfile -------------------------------------------------------------------------------- /ideas/app_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/app_func.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/asst-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/asst-create.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/asst-delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/asst-delete.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/asst-get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/asst-get.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/asst-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/asst-list.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/count-lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/count-lines.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/diagram-equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/diagram-equation.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/file-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/file-create.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/file-get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/file-get.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/function-calling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/function-calling.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/message-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/message-create.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/run-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/run-create.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/search-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/search-files.py -------------------------------------------------------------------------------- /ideas/asst-v2-py/thread-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/asst-v2-py/thread-create.py -------------------------------------------------------------------------------- /ideas/azd-imposter/azd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/azd-imposter/azd.cpp -------------------------------------------------------------------------------- /ideas/flow-hero-1.0-chat-scenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/flow-hero-1.0-chat-scenario.md -------------------------------------------------------------------------------- /ideas/flow-sub-pick-region.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/flow-sub-pick-region.md -------------------------------------------------------------------------------- /ideas/gpt-keyword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/gpt-keyword/Program.cs -------------------------------------------------------------------------------- /ideas/gpt-keyword/gpt-keyword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/gpt-keyword/gpt-keyword.csproj -------------------------------------------------------------------------------- /ideas/gpt-keyword/keyword.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/gpt-keyword/keyword.table -------------------------------------------------------------------------------- /ideas/junit-conversation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/junit-conversation.md -------------------------------------------------------------------------------- /ideas/new-ai-init-from-leah-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/new-ai-init-from-leah-spec.md -------------------------------------------------------------------------------- /ideas/notes/ai_init_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/notes/ai_init_flow.md -------------------------------------------------------------------------------- /ideas/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/other.md -------------------------------------------------------------------------------- /ideas/planning-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/planning-tasks.md -------------------------------------------------------------------------------- /ideas/porter/1-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/porter/1-instructions.md -------------------------------------------------------------------------------- /ideas/porter/custom_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/porter/custom_funcs.py -------------------------------------------------------------------------------- /ideas/porter/date_time_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/porter/date_time_helpers.py -------------------------------------------------------------------------------- /ideas/porter/example_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/porter/example_usage.py -------------------------------------------------------------------------------- /ideas/porter/file_helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/porter/file_helper_functions.py -------------------------------------------------------------------------------- /ideas/product-info/evals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/evals.yaml -------------------------------------------------------------------------------- /ideas/product-info/product_info_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_1.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_10.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_11.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_12.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_13.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_14.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_15.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_16.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_17.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_18.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_19.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_2.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_20.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_3.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_4.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_5.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_6.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_7.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_8.md -------------------------------------------------------------------------------- /ideas/product-info/product_info_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/product-info/product_info_9.md -------------------------------------------------------------------------------- /ideas/speech-templates-todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/speech-templates-todo.md -------------------------------------------------------------------------------- /ideas/template-engine/refactor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/template-engine/refactor.yaml -------------------------------------------------------------------------------- /ideas/template-generator/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/ideas/template-generator/prompt.md -------------------------------------------------------------------------------- /media/ai-cli-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/media/ai-cli-help.png -------------------------------------------------------------------------------- /media/ai-cli-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/media/ai-cli-init.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/ADOCheckItemExists.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/ADOCheckItemExists.ps1 -------------------------------------------------------------------------------- /scripts/ADOCreateFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/ADOCreateFeature.ps1 -------------------------------------------------------------------------------- /scripts/ADOGetADOLinkNumber.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/ADOGetADOLinkNumber.ps1 -------------------------------------------------------------------------------- /scripts/ADOUpdateFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/ADOUpdateFeature.ps1 -------------------------------------------------------------------------------- /scripts/GithubUpdateIssue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/GithubUpdateIssue.ps1 -------------------------------------------------------------------------------- /scripts/InstallAzureAICLI-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/InstallAzureAICLI-test.sh -------------------------------------------------------------------------------- /scripts/InstallAzureAICLIDeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/scripts/InstallAzureAICLIDeb.sh -------------------------------------------------------------------------------- /src/ai/.x/config/ai.defaults: -------------------------------------------------------------------------------- 1 | @default.config -------------------------------------------------------------------------------- /src/ai/.x/config/assistant.id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/chat.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/chat.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/chat.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/chat.default.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/chat.default.model -------------------------------------------------------------------------------- /src/ai/.x/config/chat.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/chat.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/chat.search.endpoint: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/chat.search.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/chat.search.key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/code.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/code.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/code.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/code.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/code.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/complete.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/complete.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/complete.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/connection: -------------------------------------------------------------------------------- 1 | @default.connection -------------------------------------------------------------------------------- /src/ai/.x/config/connection.from.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/connection.from.host -------------------------------------------------------------------------------- /src/ai/.x/config/default.deployment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/default.deployment -------------------------------------------------------------------------------- /src/ai/.x/config/default.log: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/ai/.x/config/default.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/default.path -------------------------------------------------------------------------------- /src/ai/.x/config/defaults: -------------------------------------------------------------------------------- 1 | @default.config -------------------------------------------------------------------------------- /src/ai/.x/config/deployment: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/dev.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/dev.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/embedding.deployment: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/embedding.endpoint: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/embedding.key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/endpoint: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/endpoint.type: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/eval.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/eval.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/eval.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/eval.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/eval.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/fiddler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/fiddler -------------------------------------------------------------------------------- /src/ai/.x/config/host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/host -------------------------------------------------------------------------------- /src/ai/.x/config/init.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/init.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/init.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/ai/.x/config/input.path: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/ai/.x/config/key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/language.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/ai/.x/config/language.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/language.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/log.pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/log.pid -------------------------------------------------------------------------------- /src/ai/.x/config/log.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/log.time -------------------------------------------------------------------------------- /src/ai/.x/config/log.time.pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/log.time.pid -------------------------------------------------------------------------------- /src/ai/.x/config/my.defaults: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/ai/.x/config/none: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/output: -------------------------------------------------------------------------------- 1 | @default.output -------------------------------------------------------------------------------- /src/ai/.x/config/output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/region: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/run.default.config: -------------------------------------------------------------------------------- 1 | @my.defaults -------------------------------------------------------------------------------- /src/ai/.x/config/samples.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/samples.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/samples.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/search.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/search.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/search.index.name: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/search.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/service.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/service.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/service.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/speech.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/ai/.x/config/speech.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/speech.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/subscription: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/test.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/test.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/tool.default.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/config/tool.default.config -------------------------------------------------------------------------------- /src/ai/.x/config/tool.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/tool.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/tool.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/vector.store.id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/vision.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/vision.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/vision.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/config/wizard.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/ai/.x/config/wizard.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/ai/.x/config/wizard.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/help/chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.create -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.delete -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.file -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.get: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.get -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.id -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.list -------------------------------------------------------------------------------- /src/ai/.x/help/chat.assistant.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.assistant.update -------------------------------------------------------------------------------- /src/ai/.x/help/chat.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/chat.examples -------------------------------------------------------------------------------- /src/ai/.x/help/code: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config -------------------------------------------------------------------------------- /src/ai/.x/help/config.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.add -------------------------------------------------------------------------------- /src/ai/.x/help/config.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.advanced -------------------------------------------------------------------------------- /src/ai/.x/help/config.clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.clear -------------------------------------------------------------------------------- /src/ai/.x/help/config.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.command -------------------------------------------------------------------------------- /src/ai/.x/help/config.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.examples -------------------------------------------------------------------------------- /src/ai/.x/help/config.find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.find -------------------------------------------------------------------------------- /src/ai/.x/help/config.hive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.hive -------------------------------------------------------------------------------- /src/ai/.x/help/config.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.region -------------------------------------------------------------------------------- /src/ai/.x/help/config.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.scope -------------------------------------------------------------------------------- /src/ai/.x/help/config.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/config.set -------------------------------------------------------------------------------- /src/ai/.x/help/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/dev -------------------------------------------------------------------------------- /src/ai/.x/help/dev.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/dev.new -------------------------------------------------------------------------------- /src/ai/.x/help/dev.shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/dev.shell -------------------------------------------------------------------------------- /src/ai/.x/help/docs: -------------------------------------------------------------------------------- 1 | @documentation -------------------------------------------------------------------------------- /src/ai/.x/help/documentation: -------------------------------------------------------------------------------- 1 | See https://aka.ms/ai/docs 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/endpoint -------------------------------------------------------------------------------- /src/ai/.x/help/eval: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/examples -------------------------------------------------------------------------------- /src/ai/.x/help/get.started: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/help -------------------------------------------------------------------------------- /src/ai/.x/help/hive: -------------------------------------------------------------------------------- 1 | @config.hive -------------------------------------------------------------------------------- /src/ai/.x/help/include.ai.ascii.logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/include.ai.ascii.logo -------------------------------------------------------------------------------- /src/ai/.x/help/include.the.key.option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/include.the.key.option -------------------------------------------------------------------------------- /src/ai/.x/help/include.the.log.option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/include.the.log.option -------------------------------------------------------------------------------- /src/ai/.x/help/include.the.run.command: -------------------------------------------------------------------------------- 1 | The `ai run` command parallelizes tasks. -------------------------------------------------------------------------------- /src/ai/.x/help/include.the.zip.option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/include.the.zip.option -------------------------------------------------------------------------------- /src/ai/.x/help/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/init -------------------------------------------------------------------------------- /src/ai/.x/help/init.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/init.advanced -------------------------------------------------------------------------------- /src/ai/.x/help/init.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/init.examples -------------------------------------------------------------------------------- /src/ai/.x/help/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/key -------------------------------------------------------------------------------- /src/ai/.x/help/key.overview: -------------------------------------------------------------------------------- 1 | @key -------------------------------------------------------------------------------- /src/ai/.x/help/language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/language -------------------------------------------------------------------------------- /src/ai/.x/help/language.classify: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/language.examples: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/language.extract: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/language.summarize: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/language.translate: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/language.understand: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/region -------------------------------------------------------------------------------- /src/ai/.x/help/region.overview: -------------------------------------------------------------------------------- 1 | @region 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/run -------------------------------------------------------------------------------- /src/ai/.x/help/run.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/run.advanced -------------------------------------------------------------------------------- /src/ai/.x/help/run.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/run.examples -------------------------------------------------------------------------------- /src/ai/.x/help/samples: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/search -------------------------------------------------------------------------------- /src/ai/.x/help/search.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/search.index -------------------------------------------------------------------------------- /src/ai/.x/help/search.index.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/search.index.update -------------------------------------------------------------------------------- /src/ai/.x/help/search.query: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/setup -------------------------------------------------------------------------------- /src/ai/.x/help/speech/_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/_ -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch: -------------------------------------------------------------------------------- 1 | @speech.batch.transcription 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.download -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.examples: -------------------------------------------------------------------------------- 1 | 2 | @speech.batch.transcription.examples -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.foreach -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.list -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.output -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.output.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.output.id -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.processes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.processes -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.region -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.save -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.threads -------------------------------------------------------------------------------- /src/ai/.x/help/speech/batch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/batch.zip -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.dataset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.dataset -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.download -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.endpoint -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.evaluation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.evaluation -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.examples -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.list -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.model -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.model.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.model.copy -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.model.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.model.list -------------------------------------------------------------------------------- /src/ai/.x/help/speech/csr.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/csr.project -------------------------------------------------------------------------------- /src/ai/.x/help/speech/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/examples -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.advanced -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.examples -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.files -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.foreach -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.format -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.input -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.keyword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.keyword -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.language -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.languages: -------------------------------------------------------------------------------- 1 | @intent.language 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.log -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.luis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.luis -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.luis.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.luis.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.once -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.output -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.pattern -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.patterns -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.phrases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.phrases -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.proxy -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.region -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.save -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.threads -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.token -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.url: -------------------------------------------------------------------------------- 1 | @intent.file 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.urls: -------------------------------------------------------------------------------- 1 | @intent.files 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.wer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.wer -------------------------------------------------------------------------------- /src/ai/.x/help/speech/intent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/intent.zip -------------------------------------------------------------------------------- /src/ai/.x/help/speech/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/output -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.create -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.delete -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.enroll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.enroll -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.id -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.kind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.kind -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.list -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.output.file: -------------------------------------------------------------------------------- 1 | @profile.output 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.output.id: -------------------------------------------------------------------------------- 1 | @profile.output 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.output.json: -------------------------------------------------------------------------------- 1 | @profile.output 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.region -------------------------------------------------------------------------------- /src/ai/.x/help/speech/profile.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/profile.status -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.check.wer: -------------------------------------------------------------------------------- 1 | @recognize.wer 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.files -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.input -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.languages: -------------------------------------------------------------------------------- 1 | @recognize.language 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.log -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.once -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.proxy -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.save -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.token -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.url: -------------------------------------------------------------------------------- 1 | @recognize.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.urls: -------------------------------------------------------------------------------- 1 | @recognize.files -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.wer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.wer -------------------------------------------------------------------------------- /src/ai/.x/help/speech/recognize.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/recognize.zip -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/speaker -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.documentation: -------------------------------------------------------------------------------- 1 | @profile.documentation 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/speaker.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/speaker.id -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/speaker.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.kind: -------------------------------------------------------------------------------- 1 | @profile.kind 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/speaker.region -------------------------------------------------------------------------------- /src/ai/.x/help/speech/speaker.verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/speaker.verify -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/synthesize -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.audio.output: -------------------------------------------------------------------------------- 1 | @synthesize.audio -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/synthesize.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/synthesize.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/synthesize.log -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.mp3: -------------------------------------------------------------------------------- 1 | @synthesize.format.mp3 -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.ogg: -------------------------------------------------------------------------------- 1 | @synthesize.format.ogg -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.opus: -------------------------------------------------------------------------------- 1 | @synthesize.format.opus -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.output: -------------------------------------------------------------------------------- 1 | @synthesize.audio.output -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.raw: -------------------------------------------------------------------------------- 1 | @synthesize.format.raw -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/synthesize.save -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.siren: -------------------------------------------------------------------------------- 1 | @synthesize.format.siren -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.url: -------------------------------------------------------------------------------- 1 | @synthesize.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.urls: -------------------------------------------------------------------------------- 1 | @synthesize.files -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.wav: -------------------------------------------------------------------------------- 1 | @synthesize.format.wav -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.webm: -------------------------------------------------------------------------------- 1 | @synthesize.format.webm -------------------------------------------------------------------------------- /src/ai/.x/help/speech/synthesize.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/synthesize.zip -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/transcribe -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/transcribe.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/transcribe.key -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.languages: -------------------------------------------------------------------------------- 1 | @transcribe.language 2 | -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/transcribe.log -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/transcribe.save -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.url: -------------------------------------------------------------------------------- 1 | @transcribe.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.urls: -------------------------------------------------------------------------------- 1 | @transcribe.files -------------------------------------------------------------------------------- /src/ai/.x/help/speech/transcribe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/transcribe.zip -------------------------------------------------------------------------------- /src/ai/.x/help/speech/translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/translate -------------------------------------------------------------------------------- /src/ai/.x/help/speech/translate.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint -------------------------------------------------------------------------------- /src/ai/.x/help/speech/translate.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/speech/translate.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/translate.url: -------------------------------------------------------------------------------- 1 | @translate.file -------------------------------------------------------------------------------- /src/ai/.x/help/speech/translate.urls: -------------------------------------------------------------------------------- 1 | @translate.files -------------------------------------------------------------------------------- /src/ai/.x/help/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/test -------------------------------------------------------------------------------- /src/ai/.x/help/test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/test.list -------------------------------------------------------------------------------- /src/ai/.x/help/test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/test.run -------------------------------------------------------------------------------- /src/ai/.x/help/tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/tool -------------------------------------------------------------------------------- /src/ai/.x/help/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/usage -------------------------------------------------------------------------------- /src/ai/.x/help/vision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/vision -------------------------------------------------------------------------------- /src/ai/.x/help/vision.document: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/vision.examples: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/vision.face: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/vision.form: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/vision.image: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/vision.person: -------------------------------------------------------------------------------- 1 | @include.not.written.yet -------------------------------------------------------------------------------- /src/ai/.x/help/wizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/.x/help/wizard -------------------------------------------------------------------------------- /src/ai/.x/templates/aml-chat-streaming-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-ai-inference -------------------------------------------------------------------------------- /src/ai/.x/templates/helper_functions/.ai/system.md: -------------------------------------------------------------------------------- 1 | You are an AI assistant that writes code for C# developers. 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/includes/openai.asst.py/requirements.txt: -------------------------------------------------------------------------------- 1 | openai>1.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-cs/OpenAIAssistants.csproj._: -------------------------------------------------------------------------------- 1 | {{@include openai-asst-cs/OpenAIAssistants.csproj._}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-asst-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-js/main.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/main.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-py/main.py: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/main.py}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-py/requirements.txt: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/requirements.txt}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-asst-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-js/main.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/main.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-py/main.py: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/main.py}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-py/requirements.txt: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/requirements.txt}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-code-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-asst-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-code-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-code-js/main.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/main.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-code-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-code-py/main.py: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/main.py}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-code-py/requirements.txt: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/requirements.txt}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-file-search-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-asst-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-file-search-py/main.py: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/main.py}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-file-search-py/requirements.txt: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/requirements.txt}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-file_search-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-file_search-js/main.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/main.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-file_search-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-functions-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-asst-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-functions-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-functions-js/main.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/main.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-functions-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.js/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-functions-py/main.py: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/main.py}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-streaming-with-functions-py/requirements.txt: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.py/requirements.txt}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-js/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-js/README.md: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/README.md}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-js/index.html: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/index.html}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-js/style.css: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/style.css}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-js/vite.config.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/vite.config.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-ts/style.css: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/style.css}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-with-functions-js/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-with-functions-js/README.md: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/README.md}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-with-functions-js/index.html: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/index.html}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-with-functions-js/package.json: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/package.json}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-with-functions-js/style.css: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/style.css}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-asst-webpage-with-functions-js/vite.config.js: -------------------------------------------------------------------------------- 1 | {{@include openai.asst.web/vite.config.js}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-cs/OpenAIChatCompletionsClass.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-cs/ChatCompletionsClass.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-java/scripts/1-copydependencies.bat: -------------------------------------------------------------------------------- 1 | mvn clean package -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-java/scripts/3-run.bat: -------------------------------------------------------------------------------- 1 | java -cp out;target/lib/* Main 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-py/requirements.txt: -------------------------------------------------------------------------------- 1 | openai>1.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-java/scripts/1-copydependencies.bat: -------------------------------------------------------------------------------- 1 | mvn clean package -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-java/scripts/3-run.bat: -------------------------------------------------------------------------------- 1 | java -cp out;target/lib/* Main 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-py/requirements.txt: -------------------------------------------------------------------------------- 1 | openai>1.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-data-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-data-java/scripts/1-copydependencies.bat: -------------------------------------------------------------------------------- 1 | mvn clean package -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-data-java/scripts/3-run.bat: -------------------------------------------------------------------------------- 1 | java -cp out;target/lib/* Main 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-data-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-data-py/requirements.txt: -------------------------------------------------------------------------------- 1 | openai>1.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-functions-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include openai-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-functions-js/ReadLineWrapper.js: -------------------------------------------------------------------------------- 1 | {{@include ReadLineWrapper.js}} 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-streaming-with-functions-py/requirements.txt: -------------------------------------------------------------------------------- 1 | openai>1.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-webpage-js/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-webpage-ts/types/marked.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'marked'; 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-webpage-with-functions-js/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ai/.x/templates/openai-chat-webpage-with-functions-ts/types/marked.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'marked'; 2 | -------------------------------------------------------------------------------- /src/ai/.x/templates/phi3-onnx-chat-streaming-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include phi3-onnx-chat-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/phi3-onnx-chat-streaming-with-functions-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include phi3-onnx-chat-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/sk-chat-streaming-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include sk-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/sk-chat-streaming-cs/SemanticKernelChatCompletionsStreaming.csproj._: -------------------------------------------------------------------------------- 1 | {{@include sk-cs/sk.csproj._}} -------------------------------------------------------------------------------- /src/ai/.x/templates/sk-chat-streaming-with-data-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include sk-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/sk-chat-streaming-with-functions-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include sk-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-continuous-reco-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include speech-to-text-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-continuous-reco-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include speech-to-text-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-with-file-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include speech-to-text-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-with-file-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-with-keyword-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-with-translation-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include speech-to-text-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/speech-to-text-with-translation-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/text-to-speech-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include text-to-speech-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/text-to-speech-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/.x/templates/text-to-speech-with-file-cs/Program.cs: -------------------------------------------------------------------------------- 1 | {{@include text-to-speech-cs/Program.cs}} -------------------------------------------------------------------------------- /src/ai/.x/templates/text-to-speech-with-file-py/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-cognitiveservices-speech>=1.35.0 -------------------------------------------------------------------------------- /src/ai/BuildCommon.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/BuildCommon.targets -------------------------------------------------------------------------------- /src/ai/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/LICENSE.txt -------------------------------------------------------------------------------- /src/ai/Program_AI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/Program_AI.cs -------------------------------------------------------------------------------- /src/ai/ai-cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/ai-cli.csproj -------------------------------------------------------------------------------- /src/ai/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/app.manifest -------------------------------------------------------------------------------- /src/ai/commands/chat_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/chat_command.cs -------------------------------------------------------------------------------- /src/ai/commands/dev_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/dev_command.cs -------------------------------------------------------------------------------- /src/ai/commands/eval_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/eval_command.cs -------------------------------------------------------------------------------- /src/ai/commands/init_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/init_command.cs -------------------------------------------------------------------------------- /src/ai/commands/scenario_action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/scenario_action.cs -------------------------------------------------------------------------------- /src/ai/commands/search_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/search_command.cs -------------------------------------------------------------------------------- /src/ai/commands/service_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/service_command.cs -------------------------------------------------------------------------------- /src/ai/commands/speech_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/speech_command.cs -------------------------------------------------------------------------------- /src/ai/commands/test_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/test_command.cs -------------------------------------------------------------------------------- /src/ai/commands/tool_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/tool_command.cs -------------------------------------------------------------------------------- /src/ai/commands/version_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/version_command.cs -------------------------------------------------------------------------------- /src/ai/commands/vision_command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/commands/vision_command.cs -------------------------------------------------------------------------------- /src/ai/helpers/telemetry_helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/helpers/telemetry_helper.cs -------------------------------------------------------------------------------- /src/ai/linker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/ai/linker.xml -------------------------------------------------------------------------------- /src/clis/spx/.x/config/batch.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/batch.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/connection: -------------------------------------------------------------------------------- 1 | @default.connection -------------------------------------------------------------------------------- /src/clis/spx/.x/config/csr.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/csr.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/default.log: -------------------------------------------------------------------------------- 1 | @log.time -------------------------------------------------------------------------------- /src/clis/spx/.x/config/defaults: -------------------------------------------------------------------------------- 1 | @default.config -------------------------------------------------------------------------------- /src/clis/spx/.x/config/dialog.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/dialog.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/spx/.x/config/endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/endpoint -------------------------------------------------------------------------------- /src/clis/spx/.x/config/fiddler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/fiddler -------------------------------------------------------------------------------- /src/clis/spx/.x/config/host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/host -------------------------------------------------------------------------------- /src/clis/spx/.x/config/identify.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/identify.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/init.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/input.path: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/intent.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/intent.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/spx/.x/config/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/key -------------------------------------------------------------------------------- /src/clis/spx/.x/config/language: -------------------------------------------------------------------------------- 1 | en-US -------------------------------------------------------------------------------- /src/clis/spx/.x/config/log.pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/log.pid -------------------------------------------------------------------------------- /src/clis/spx/.x/config/log.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/log.time -------------------------------------------------------------------------------- /src/clis/spx/.x/config/my.defaults: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/none: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clis/spx/.x/config/output: -------------------------------------------------------------------------------- 1 | @default.output -------------------------------------------------------------------------------- /src/clis/spx/.x/config/profile.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/profile.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/recognize.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/recognize.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/spx/.x/config/region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/config/region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/run.default.config: -------------------------------------------------------------------------------- 1 | @my.defaults -------------------------------------------------------------------------------- /src/clis/spx/.x/config/speaker.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/speaker.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/spx.defaults: -------------------------------------------------------------------------------- 1 | @default.config -------------------------------------------------------------------------------- /src/clis/spx/.x/config/synthesize.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/synthesize.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/spx/.x/config/synthesize.output.all.standard: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/spx/.x/config/transcribe.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/transcribe.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/spx/.x/config/translate.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.region -------------------------------------------------------------------------------- /src/clis/spx/.x/config/translate.output.all.translated.text: -------------------------------------------------------------------------------- 1 | output.all.result.translated.text=true -------------------------------------------------------------------------------- /src/clis/spx/.x/config/translate.output.each.translated.text: -------------------------------------------------------------------------------- 1 | output.each.result.translated.text=true -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch: -------------------------------------------------------------------------------- 1 | @speech.batch.transcription 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.examples: -------------------------------------------------------------------------------- 1 | 2 | @speech.batch.transcription.examples -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.foreach -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.list -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.output -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.region -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.save -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.threads -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.transcription.create.diarization: -------------------------------------------------------------------------------- 1 | batch.transcription.create.diarization NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.transcription.create.properties: -------------------------------------------------------------------------------- 1 | batch.transcription.create.properties NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.transcription.reference: -------------------------------------------------------------------------------- 1 | batch.transcription.reference NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/batch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/batch.zip -------------------------------------------------------------------------------- /src/clis/spx/.x/help/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/check -------------------------------------------------------------------------------- /src/clis/spx/.x/help/check.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/check.result -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.add -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.clear -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.find -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.hive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.hive -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.region -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.scope -------------------------------------------------------------------------------- /src/clis/spx/.x/help/config.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/config.set -------------------------------------------------------------------------------- /src/clis/spx/.x/help/connect: -------------------------------------------------------------------------------- 1 | CONNECT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/continuous: -------------------------------------------------------------------------------- 1 | CONTINUOUS help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/conversation: -------------------------------------------------------------------------------- 1 | CONVERSATION help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/conversation.id: -------------------------------------------------------------------------------- 1 | CONVERSATION ID help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.dataset -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.create.content: -------------------------------------------------------------------------------- 1 | csr.dataset.create.content NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.create.kind: -------------------------------------------------------------------------------- 1 | csr.dataset.create.kind NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.create.language: -------------------------------------------------------------------------------- 1 | csr.dataset.create.language NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.description: -------------------------------------------------------------------------------- 1 | csr.dataset.description NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.download.file: -------------------------------------------------------------------------------- 1 | csr.dataset.download.file NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.list.languages: -------------------------------------------------------------------------------- 1 | csr.dataset.list.languages NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.list.project: -------------------------------------------------------------------------------- 1 | csr.dataset.list.project NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.name: -------------------------------------------------------------------------------- 1 | csr.dataset.name NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.project: -------------------------------------------------------------------------------- 1 | csr.dataset.create.project NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.upload.kind: -------------------------------------------------------------------------------- 1 | csr dataset upload kind NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.dataset.upload.language: -------------------------------------------------------------------------------- 1 | csr dataset upload language NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.download -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.download.dataset.file: -------------------------------------------------------------------------------- 1 | csr download dataset file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.download.endpoint.log: -------------------------------------------------------------------------------- 1 | csr download endpoint log NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.download.file: -------------------------------------------------------------------------------- 1 | csr download file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.download.url: -------------------------------------------------------------------------------- 1 | csr download url NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.endpoint -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.create.language: -------------------------------------------------------------------------------- 1 | csr.endpoint.create.language NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.create.model: -------------------------------------------------------------------------------- 1 | csr.endpoint.create.model NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.create.text: -------------------------------------------------------------------------------- 1 | csr.endpoint.create.text NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.description: -------------------------------------------------------------------------------- 1 | csr.endpoint.description NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.examples: -------------------------------------------------------------------------------- 1 | csr endpoint examples NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.name: -------------------------------------------------------------------------------- 1 | csr.endpoint.name NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.endpoint.project: -------------------------------------------------------------------------------- 1 | csr.endpoint.project NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.evaluation.examples: -------------------------------------------------------------------------------- 1 | csr evaluation examples NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.examples -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.foreach: -------------------------------------------------------------------------------- 1 | csr foreach NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.input.path: -------------------------------------------------------------------------------- 1 | csr input path NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.key: -------------------------------------------------------------------------------- 1 | csr key NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.list -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.base.models: -------------------------------------------------------------------------------- 1 | csr list base models NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.dataset.languages: -------------------------------------------------------------------------------- 1 | csr list dataset languages NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.datasets: -------------------------------------------------------------------------------- 1 | csr list datasets NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.endpoint.languages: -------------------------------------------------------------------------------- 1 | csr list endpoint languages NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.endpoints: -------------------------------------------------------------------------------- 1 | csr list endpoints NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.model.languages: -------------------------------------------------------------------------------- 1 | csr list model languages NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.models: -------------------------------------------------------------------------------- 1 | csr list models NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.project.languages: -------------------------------------------------------------------------------- 1 | csr list project languages NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.list.projects: -------------------------------------------------------------------------------- 1 | csr list projects NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.model -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.copy.target: -------------------------------------------------------------------------------- 1 | csr model copy target NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.create.base: -------------------------------------------------------------------------------- 1 | csr.model.create.base NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.create.dataset: -------------------------------------------------------------------------------- 1 | csr.model.create.dataset NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.create.datasets: -------------------------------------------------------------------------------- 1 | csr.model.create.datasets NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.create.language: -------------------------------------------------------------------------------- 1 | csr.model.create.language NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.create.text: -------------------------------------------------------------------------------- 1 | csr.model.create.text NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.description: -------------------------------------------------------------------------------- 1 | csr.model.description NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.examples: -------------------------------------------------------------------------------- 1 | csr model examples NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.name: -------------------------------------------------------------------------------- 1 | csr.model.name NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.model.project: -------------------------------------------------------------------------------- 1 | csr.model.project NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.more.examples: -------------------------------------------------------------------------------- 1 | csr more examples NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.output.file: -------------------------------------------------------------------------------- 1 | csr output file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.output.id: -------------------------------------------------------------------------------- 1 | csr output id NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.output.json: -------------------------------------------------------------------------------- 1 | csr output json NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.output.path: -------------------------------------------------------------------------------- 1 | csr output path NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.output.url: -------------------------------------------------------------------------------- 1 | csr output url NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/csr.project -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.project.create.language: -------------------------------------------------------------------------------- 1 | csr.project.create.language NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.project.description: -------------------------------------------------------------------------------- 1 | csr.project.description NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.project.examples: -------------------------------------------------------------------------------- 1 | csr project examples NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.project.name: -------------------------------------------------------------------------------- 1 | csr.project.name NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.region: -------------------------------------------------------------------------------- 1 | csr region NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.save: -------------------------------------------------------------------------------- 1 | csr save NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.url: -------------------------------------------------------------------------------- 1 | csr url NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.wait: -------------------------------------------------------------------------------- 1 | csr wait NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/csr.zip: -------------------------------------------------------------------------------- 1 | csr zip NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/customization: -------------------------------------------------------------------------------- 1 | customization NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/customize.categoryid: -------------------------------------------------------------------------------- 1 | CUSTOMIZE CATEGORYID help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/customize.endpointid: -------------------------------------------------------------------------------- 1 | CUSTOMIZE ENDPOINTID help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/defaults: -------------------------------------------------------------------------------- 1 | DEFAULTS help topic NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/dialog -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.advanced: -------------------------------------------------------------------------------- 1 | DIALOG ADVANCED help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/dialog.bot -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot.continuous: -------------------------------------------------------------------------------- 1 | dialog.bot.continuous NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot.id: -------------------------------------------------------------------------------- 1 | dialog.bot.id NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot.input: -------------------------------------------------------------------------------- 1 | dialog.bot.input NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot.keyword: -------------------------------------------------------------------------------- 1 | dialog.bot.keyword NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot.once: -------------------------------------------------------------------------------- 1 | dialog.bot.once NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.bot.output: -------------------------------------------------------------------------------- 1 | dialog.bot.output NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.cc: -------------------------------------------------------------------------------- 1 | @dialog.customcommands -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.customcommands.appid: -------------------------------------------------------------------------------- 1 | dialog.customcommands.appid NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.customcommands.continuous: -------------------------------------------------------------------------------- 1 | dialog.customcommands.continuous NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.customcommands.input: -------------------------------------------------------------------------------- 1 | dialog.customcommands.input NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.customcommands.keyword: -------------------------------------------------------------------------------- 1 | dialog.customcommands.keyword NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.customcommands.once: -------------------------------------------------------------------------------- 1 | dialog.customcommands.once NOT YET WRITTEN -------------------------------------------------------------------------------- /src/clis/spx/.x/help/dialog.customcommands.output: -------------------------------------------------------------------------------- 1 | dialog.customcommands.output NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/display.post.processing: -------------------------------------------------------------------------------- 1 | DISPLAY POST PROCESSING help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/documentation: -------------------------------------------------------------------------------- 1 | See: https://aka.ms/speech/spx/docs 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/endpoint -------------------------------------------------------------------------------- /src/clis/spx/.x/help/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/examples -------------------------------------------------------------------------------- /src/clis/spx/.x/help/foreach: -------------------------------------------------------------------------------- 1 | FOREACH help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/help -------------------------------------------------------------------------------- /src/clis/spx/.x/help/hive: -------------------------------------------------------------------------------- 1 | @config.hive -------------------------------------------------------------------------------- /src/clis/spx/.x/help/include.the.run.command: -------------------------------------------------------------------------------- 1 | The `spx run` command parallelizes tasks. -------------------------------------------------------------------------------- /src/clis/spx/.x/help/include.the.webjob.command: -------------------------------------------------------------------------------- 1 | The `spx webjob` manages Azure WebJob operations. -------------------------------------------------------------------------------- /src/clis/spx/.x/help/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/init -------------------------------------------------------------------------------- /src/clis/spx/.x/help/init.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/init.advanced -------------------------------------------------------------------------------- /src/clis/spx/.x/help/init.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/init.examples -------------------------------------------------------------------------------- /src/clis/spx/.x/help/input: -------------------------------------------------------------------------------- 1 | AUDIO INPUT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/input.id: -------------------------------------------------------------------------------- 1 | INPUT ID help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.file -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.files -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.format -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.input -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.languages: -------------------------------------------------------------------------------- 1 | @intent.language 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.log -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.luis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.luis -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.once -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.output -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.accuracy: -------------------------------------------------------------------------------- 1 | INTENT IMPROVE ACCURACY help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.all.file: -------------------------------------------------------------------------------- 1 | intent output all file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.all.files: -------------------------------------------------------------------------------- 1 | intent output batch file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.all.json: -------------------------------------------------------------------------------- 1 | intent output batch json NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.file: -------------------------------------------------------------------------------- 1 | intent output each file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.text: -------------------------------------------------------------------------------- 1 | INTENT CHECK TEXT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.output.wer: -------------------------------------------------------------------------------- 1 | INTENT OUTPUT WER help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.proxy -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.region -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.save -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.testing: -------------------------------------------------------------------------------- 1 | INTENT TESTING help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.token -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.transcript: -------------------------------------------------------------------------------- 1 | INTENT TRANSCRIPT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.url: -------------------------------------------------------------------------------- 1 | @intent.file 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.urls: -------------------------------------------------------------------------------- 1 | @intent.files 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.wer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.wer -------------------------------------------------------------------------------- /src/clis/spx/.x/help/intent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/intent.zip -------------------------------------------------------------------------------- /src/clis/spx/.x/help/internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/internal -------------------------------------------------------------------------------- /src/clis/spx/.x/help/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/key.overview: -------------------------------------------------------------------------------- 1 | @key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/keyword: -------------------------------------------------------------------------------- 1 | KEYWORD help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/language: -------------------------------------------------------------------------------- 1 | LANGUAGE help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/log: -------------------------------------------------------------------------------- 1 | LOG help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/microphone: -------------------------------------------------------------------------------- 1 | MICROPHONE help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/once: -------------------------------------------------------------------------------- 1 | ONCE help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/output -------------------------------------------------------------------------------- /src/clis/spx/.x/help/output.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/output.all -------------------------------------------------------------------------------- /src/clis/spx/.x/help/output.each: -------------------------------------------------------------------------------- 1 | OUTPUT EACH help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/phrases: -------------------------------------------------------------------------------- 1 | PHRASES help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profanity: -------------------------------------------------------------------------------- 1 | PROFANITY help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/profile -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/profile.file -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/profile.id -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/profile.key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.kind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/profile.kind -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/profile.list -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.output.file: -------------------------------------------------------------------------------- 1 | @profile.output 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.output.id: -------------------------------------------------------------------------------- 1 | @profile.output 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/profile.output.json: -------------------------------------------------------------------------------- 1 | @profile.output 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/proxy: -------------------------------------------------------------------------------- 1 | PROXY help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/query.string: -------------------------------------------------------------------------------- 1 | query.string NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/recognize -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.check.text: -------------------------------------------------------------------------------- 1 | RECOGNIZE CHECK TEXT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.check.wer: -------------------------------------------------------------------------------- 1 | @recognize.wer 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.custom.speech: -------------------------------------------------------------------------------- 1 | RECOGNIZE CUSTOM SPEECH help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.disconnect: -------------------------------------------------------------------------------- 1 | recognize disconnect NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.improve.accuracy: -------------------------------------------------------------------------------- 1 | RECOGNIZE IMPROVE ACCURACY help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/recognize.key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.languages: -------------------------------------------------------------------------------- 1 | @recognize.language 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/recognize.log -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.output.all.file: -------------------------------------------------------------------------------- 1 | recognize output all file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.output.batch.file: -------------------------------------------------------------------------------- 1 | recognize output batch file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.output.batch.json: -------------------------------------------------------------------------------- 1 | recognize output batch json NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.output.each.file: -------------------------------------------------------------------------------- 1 | recognize output each file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.testing: -------------------------------------------------------------------------------- 1 | RECOGNIZE TESTING help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.transcript: -------------------------------------------------------------------------------- 1 | RECOGNIZE TRANSCRIPT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.url: -------------------------------------------------------------------------------- 1 | @recognize.file -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.urls: -------------------------------------------------------------------------------- 1 | @recognize.files -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.wer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/recognize.wer -------------------------------------------------------------------------------- /src/clis/spx/.x/help/recognize.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/recognize.zip -------------------------------------------------------------------------------- /src/clis/spx/.x/help/region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/region -------------------------------------------------------------------------------- /src/clis/spx/.x/help/region.overview: -------------------------------------------------------------------------------- 1 | @region 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/run -------------------------------------------------------------------------------- /src/clis/spx/.x/help/run.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/run.advanced -------------------------------------------------------------------------------- /src/clis/spx/.x/help/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/run.csx -------------------------------------------------------------------------------- /src/clis/spx/.x/help/run.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/run.examples -------------------------------------------------------------------------------- /src/clis/spx/.x/help/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/setup -------------------------------------------------------------------------------- /src/clis/spx/.x/help/source: -------------------------------------------------------------------------------- 1 | SOURCE help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/speaker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/speaker -------------------------------------------------------------------------------- /src/clis/spx/.x/help/speaker.documentation: -------------------------------------------------------------------------------- 1 | @profile.documentation 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/speaker.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/speaker.file -------------------------------------------------------------------------------- /src/clis/spx/.x/help/speaker.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/speaker.id -------------------------------------------------------------------------------- /src/clis/spx/.x/help/speaker.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/speaker.key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/speaker.kind: -------------------------------------------------------------------------------- 1 | @profile.kind 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/synthesize -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.audio.output: -------------------------------------------------------------------------------- 1 | @synthesize.audio -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.audio.speakers: -------------------------------------------------------------------------------- 1 | synthesize.audio.speakers NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.interactive: -------------------------------------------------------------------------------- 1 | synthesize.interactive NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.mp3: -------------------------------------------------------------------------------- 1 | @synthesize.format.mp3 -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.ogg: -------------------------------------------------------------------------------- 1 | @synthesize.format.ogg -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.opus: -------------------------------------------------------------------------------- 1 | @synthesize.format.opus -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.output: -------------------------------------------------------------------------------- 1 | @synthesize.audio.output -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.output.all: -------------------------------------------------------------------------------- 1 | synthesize.output.all NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.output.all.file: -------------------------------------------------------------------------------- 1 | synthesize output all file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.output.each: -------------------------------------------------------------------------------- 1 | synthesize.output.each NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.output.each.file: -------------------------------------------------------------------------------- 1 | synthesize output each file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.raw: -------------------------------------------------------------------------------- 1 | @synthesize.format.raw -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.siren: -------------------------------------------------------------------------------- 1 | @synthesize.format.siren -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.ssml: -------------------------------------------------------------------------------- 1 | synthesize.ssml NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.text: -------------------------------------------------------------------------------- 1 | synthesize.text NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.url: -------------------------------------------------------------------------------- 1 | @synthesize.file -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.urls: -------------------------------------------------------------------------------- 1 | @synthesize.files -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.voice: -------------------------------------------------------------------------------- 1 | synthesize.voice NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.wav: -------------------------------------------------------------------------------- 1 | @synthesize.format.wav -------------------------------------------------------------------------------- /src/clis/spx/.x/help/synthesize.webm: -------------------------------------------------------------------------------- 1 | @synthesize.format.webm -------------------------------------------------------------------------------- /src/clis/spx/.x/help/target: -------------------------------------------------------------------------------- 1 | TARGET help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/token: -------------------------------------------------------------------------------- 1 | AUTHENTICATION TOKEN help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/traffic.type: -------------------------------------------------------------------------------- 1 | traffic.type NOT YET WRITTEN!! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/translate -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.check.text: -------------------------------------------------------------------------------- 1 | translate check text NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.check.wer: -------------------------------------------------------------------------------- 1 | translate check wer NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.custom.speech: -------------------------------------------------------------------------------- 1 | translate custom speech NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.disconnect: -------------------------------------------------------------------------------- 1 | translate disconnect NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.endpoint: -------------------------------------------------------------------------------- 1 | @endpoint -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/translate.key -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/translate.log -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.output.all.file: -------------------------------------------------------------------------------- 1 | translate output all file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.output.batch: -------------------------------------------------------------------------------- 1 | translate output batch NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.output.batch.file: -------------------------------------------------------------------------------- 1 | translate output batch file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.output.batch.json: -------------------------------------------------------------------------------- 1 | translate output batch json NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.output.each.file: -------------------------------------------------------------------------------- 1 | translate output each file NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.profanity: -------------------------------------------------------------------------------- 1 | translate profanity NOT YET WRITTEN 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.url: -------------------------------------------------------------------------------- 1 | @translate.file -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.urls: -------------------------------------------------------------------------------- 1 | @translate.files -------------------------------------------------------------------------------- /src/clis/spx/.x/help/translate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/translate.zip -------------------------------------------------------------------------------- /src/clis/spx/.x/help/tutorials: -------------------------------------------------------------------------------- 1 | TUTORIALs help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/usage -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/webjob -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.advanced: -------------------------------------------------------------------------------- 1 | WEBJOB ADVANCED help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.connection: -------------------------------------------------------------------------------- 1 | WEBJOB CONNECTION help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.delete: -------------------------------------------------------------------------------- 1 | WEBJOB DELETE help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.endpoint: -------------------------------------------------------------------------------- 1 | WEBJOB ENDPOINT help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.execution: -------------------------------------------------------------------------------- 1 | WEBJOB EXECUTION help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.foreach: -------------------------------------------------------------------------------- 1 | WEBJOB FOREACH help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/webjob.list -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.list.jobs: -------------------------------------------------------------------------------- 1 | WEBJOB LIST JOBS help topic NOT YET WRITTEN! -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.password: -------------------------------------------------------------------------------- 1 | WEBJOB PASSWORD help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.resources: -------------------------------------------------------------------------------- 1 | WEBJOB RESOURCEs help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.results: -------------------------------------------------------------------------------- 1 | WEBJOB RESULTs help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/webjob.run -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/webjob.setup -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/webjob.status -------------------------------------------------------------------------------- /src/clis/spx/.x/help/webjob.upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/.x/help/webjob.upload -------------------------------------------------------------------------------- /src/clis/spx/.x/help/websocket.messages: -------------------------------------------------------------------------------- 1 | websocket.messages help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/.x/help/zip: -------------------------------------------------------------------------------- 1 | ZIP help topic NOT YET WRITTEN! 2 | -------------------------------------------------------------------------------- /src/clis/spx/BuildCommon.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/BuildCommon.targets -------------------------------------------------------------------------------- /src/clis/spx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/LICENSE.txt -------------------------------------------------------------------------------- /src/clis/spx/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/NuGet.Config -------------------------------------------------------------------------------- /src/clis/spx/Program_SPX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/Program_SPX.cs -------------------------------------------------------------------------------- /src/clis/spx/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/app.manifest -------------------------------------------------------------------------------- /src/clis/spx/ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/ci/Dockerfile -------------------------------------------------------------------------------- /src/clis/spx/ci/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/ci/build-all.sh -------------------------------------------------------------------------------- /src/clis/spx/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/packages.lock.json -------------------------------------------------------------------------------- /src/clis/spx/spx-cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/spx-cli.csproj -------------------------------------------------------------------------------- /src/clis/spx/spx-cli.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/spx-cli.sln -------------------------------------------------------------------------------- /src/clis/spx/spx.dev.new.todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/spx.dev.new.todo.md -------------------------------------------------------------------------------- /src/clis/spx/tests/check-all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/check-all.cmd -------------------------------------------------------------------------------- /src/clis/spx/tests/check-batch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/check-batch.cmd -------------------------------------------------------------------------------- /src/clis/spx/tests/check-cli.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/check-cli.cmd -------------------------------------------------------------------------------- /src/clis/spx/tests/check-csr.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/check-csr.cmd -------------------------------------------------------------------------------- /src/clis/spx/tests/check-help.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/check-help.cmd -------------------------------------------------------------------------------- /src/clis/spx/tests/pronunciation.txt: -------------------------------------------------------------------------------- 1 | 3CPO three c p o 2 | CNTK c n t k 3 | IEEE i triple e -------------------------------------------------------------------------------- /src/clis/spx/tests/sentences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/sentences.txt -------------------------------------------------------------------------------- /src/clis/spx/tests/stress-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/stress-text.txt -------------------------------------------------------------------------------- /src/clis/spx/tests/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/test -------------------------------------------------------------------------------- /src/clis/spx/tests/test.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/test.batch -------------------------------------------------------------------------------- /src/clis/spx/tests/test.stress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/test.stress -------------------------------------------------------------------------------- /src/clis/spx/tests/test.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/tests/test.tsv -------------------------------------------------------------------------------- /src/clis/spx/tests/this.is.a.test.txt: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /src/clis/spx/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/spx/todo.md -------------------------------------------------------------------------------- /src/clis/vz/.x/config/connection: -------------------------------------------------------------------------------- 1 | @default.connection -------------------------------------------------------------------------------- /src/clis/vz/.x/config/default.log: -------------------------------------------------------------------------------- 1 | @log.time -------------------------------------------------------------------------------- /src/clis/vz/.x/config/default.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/default.path -------------------------------------------------------------------------------- /src/clis/vz/.x/config/defaults: -------------------------------------------------------------------------------- 1 | @default.config -------------------------------------------------------------------------------- /src/clis/vz/.x/config/endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/endpoint -------------------------------------------------------------------------------- /src/clis/vz/.x/config/fiddler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/fiddler -------------------------------------------------------------------------------- /src/clis/vz/.x/config/host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/host -------------------------------------------------------------------------------- /src/clis/vz/.x/config/image.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/clis/vz/.x/config/image.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/vz/.x/config/image.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clis/vz/.x/config/image.region: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clis/vz/.x/config/init.default.output: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/vz/.x/config/input.path: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/vz/.x/config/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/key -------------------------------------------------------------------------------- /src/clis/vz/.x/config/log.pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/log.pid -------------------------------------------------------------------------------- /src/clis/vz/.x/config/log.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/log.time -------------------------------------------------------------------------------- /src/clis/vz/.x/config/log.time.pid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/log.time.pid -------------------------------------------------------------------------------- /src/clis/vz/.x/config/my.defaults: -------------------------------------------------------------------------------- 1 | @none -------------------------------------------------------------------------------- /src/clis/vz/.x/config/none: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clis/vz/.x/config/output: -------------------------------------------------------------------------------- 1 | @default.output -------------------------------------------------------------------------------- /src/clis/vz/.x/config/output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clis/vz/.x/config/person.default.connection: -------------------------------------------------------------------------------- 1 | @connection.from.endpoint -------------------------------------------------------------------------------- /src/clis/vz/.x/config/person.default.output: -------------------------------------------------------------------------------- 1 | @output.all.standard -------------------------------------------------------------------------------- /src/clis/vz/.x/config/person.output.all.standard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clis/vz/.x/config/region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/config/region -------------------------------------------------------------------------------- /src/clis/vz/.x/config/run.default.config: -------------------------------------------------------------------------------- 1 | @my.defaults -------------------------------------------------------------------------------- /src/clis/vz/.x/config/vz.defaults: -------------------------------------------------------------------------------- 1 | @default.config -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.add -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.clear -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.command -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.find -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.hive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.hive -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.region -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.scope -------------------------------------------------------------------------------- /src/clis/vz/.x/help/config.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/config.set -------------------------------------------------------------------------------- /src/clis/vz/.x/help/documentation: -------------------------------------------------------------------------------- 1 | See https://aka.ms/vision/vz/docs 2 | -------------------------------------------------------------------------------- /src/clis/vz/.x/help/endpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/endpoint -------------------------------------------------------------------------------- /src/clis/vz/.x/help/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/examples -------------------------------------------------------------------------------- /src/clis/vz/.x/help/face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/face -------------------------------------------------------------------------------- /src/clis/vz/.x/help/face.identify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/face.identify -------------------------------------------------------------------------------- /src/clis/vz/.x/help/face.verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/face.verify -------------------------------------------------------------------------------- /src/clis/vz/.x/help/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/help -------------------------------------------------------------------------------- /src/clis/vz/.x/help/hive: -------------------------------------------------------------------------------- 1 | @config.hive -------------------------------------------------------------------------------- /src/clis/vz/.x/help/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/image -------------------------------------------------------------------------------- /src/clis/vz/.x/help/image.analyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/image.analyze -------------------------------------------------------------------------------- /src/clis/vz/.x/help/image.read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/image.read -------------------------------------------------------------------------------- /src/clis/vz/.x/help/include.the.run.command: -------------------------------------------------------------------------------- 1 | The `vz run` command parallelizes tasks. -------------------------------------------------------------------------------- /src/clis/vz/.x/help/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/init -------------------------------------------------------------------------------- /src/clis/vz/.x/help/init.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/init.advanced -------------------------------------------------------------------------------- /src/clis/vz/.x/help/init.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/init.examples -------------------------------------------------------------------------------- /src/clis/vz/.x/help/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/key -------------------------------------------------------------------------------- /src/clis/vz/.x/help/key.overview: -------------------------------------------------------------------------------- 1 | @key -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person.create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person.create -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person.delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person.delete -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person.face: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person.face -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person.group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person.group -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person.list -------------------------------------------------------------------------------- /src/clis/vz/.x/help/person.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/person.update -------------------------------------------------------------------------------- /src/clis/vz/.x/help/region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/region -------------------------------------------------------------------------------- /src/clis/vz/.x/help/region.overview: -------------------------------------------------------------------------------- 1 | @region 2 | -------------------------------------------------------------------------------- /src/clis/vz/.x/help/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/run -------------------------------------------------------------------------------- /src/clis/vz/.x/help/run.advanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/run.advanced -------------------------------------------------------------------------------- /src/clis/vz/.x/help/run.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/run.examples -------------------------------------------------------------------------------- /src/clis/vz/.x/help/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/setup -------------------------------------------------------------------------------- /src/clis/vz/.x/help/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/.x/help/usage -------------------------------------------------------------------------------- /src/clis/vz/BuildCommon.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/BuildCommon.targets -------------------------------------------------------------------------------- /src/clis/vz/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/LICENSE.txt -------------------------------------------------------------------------------- /src/clis/vz/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/NuGet.Config -------------------------------------------------------------------------------- /src/clis/vz/Program_VZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/Program_VZ.cs -------------------------------------------------------------------------------- /src/clis/vz/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /src/clis/vz/THIRD_PARTY_NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/THIRD_PARTY_NOTICE.txt -------------------------------------------------------------------------------- /src/clis/vz/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/app.manifest -------------------------------------------------------------------------------- /src/clis/vz/ci/build-all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/ci/build-all.cmd -------------------------------------------------------------------------------- /src/clis/vz/ci/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/ci/build-all.sh -------------------------------------------------------------------------------- /src/clis/vz/ci/build-linux-x64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/ci/build-linux-x64.cmd -------------------------------------------------------------------------------- /src/clis/vz/ci/build-win-x64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/ci/build-win-x64.cmd -------------------------------------------------------------------------------- /src/clis/vz/ci/publish-win-x64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/ci/publish-win-x64.cmd -------------------------------------------------------------------------------- /src/clis/vz/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/packages.lock.json -------------------------------------------------------------------------------- /src/clis/vz/tests/check-all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/tests/check-all.cmd -------------------------------------------------------------------------------- /src/clis/vz/tests/check-cli.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/tests/check-cli.cmd -------------------------------------------------------------------------------- /src/clis/vz/vz-cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/clis/vz/vz-cli.csproj -------------------------------------------------------------------------------- /src/common/BuildCommon.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/BuildCommon.targets -------------------------------------------------------------------------------- /src/common/IEventLoggerHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/IEventLoggerHelpers.cs -------------------------------------------------------------------------------- /src/common/IProgramData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/IProgramData.cs -------------------------------------------------------------------------------- /src/common/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/Program.cs -------------------------------------------------------------------------------- /src/common/Telemetry/ITelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/Telemetry/ITelemetry.cs -------------------------------------------------------------------------------- /src/common/Telemetry/Outcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/Telemetry/Outcome.cs -------------------------------------------------------------------------------- /src/common/common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/common.csproj -------------------------------------------------------------------------------- /src/common/details/azcli/AzCli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/details/azcli/AzCli.cs -------------------------------------------------------------------------------- /src/common/details/helpers/os.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/common/details/helpers/os.cs -------------------------------------------------------------------------------- /src/installer/windows/ai.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/installer/windows/ai.wxs -------------------------------------------------------------------------------- /src/installer/windows/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/installer/windows/license.rtf -------------------------------------------------------------------------------- /src/installer/windows/ui.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/installer/windows/ui.wxs -------------------------------------------------------------------------------- /src/telemetry/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/telemetry/NuGet.config -------------------------------------------------------------------------------- /src/testing/runner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/src/testing/runner/Program.cs -------------------------------------------------------------------------------- /tests/Azure-AI-CLI-TestFramework-Default-Tags.yaml: -------------------------------------------------------------------------------- 1 | cli: ai 2 | workingDirectory: ../testresults 3 | -------------------------------------------------------------------------------- /tests/ai_chat_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/ai_chat_tests.yaml -------------------------------------------------------------------------------- /tests/audio/hello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/audio/hello.wav -------------------------------------------------------------------------------- /tests/audio/katiesteve_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/audio/katiesteve_mono.wav -------------------------------------------------------------------------------- /tests/audio/profanity.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/audio/profanity.wav -------------------------------------------------------------------------------- /tests/basic-no-inputs.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/basic-no-inputs.prompty -------------------------------------------------------------------------------- /tests/basic.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/basic.prompty -------------------------------------------------------------------------------- /tests/chat-history-basic.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/chat-history-basic.jsonl -------------------------------------------------------------------------------- /tests/chat-history-function.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/chat-history-function.jsonl -------------------------------------------------------------------------------- /tests/image-analysis-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/image-analysis-sample.jpg -------------------------------------------------------------------------------- /tests/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/sample.json -------------------------------------------------------------------------------- /tests/test-speech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/test-speech.yaml -------------------------------------------------------------------------------- /tests/test-yaml-element-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/test-yaml-element-env.yaml -------------------------------------------------------------------------------- /tests/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/test.yaml -------------------------------------------------------------------------------- /tests/test2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/test2.yaml -------------------------------------------------------------------------------- /tests/test3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/test3.yaml -------------------------------------------------------------------------------- /tests/test_ai_vision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-ai-cli/HEAD/tests/test_ai_vision.yaml --------------------------------------------------------------------------------