GitHubModels
Use GitHub Models via Azure AI Inference
GitHubModels
Use GitHub Models via Azure AI Inference
yaml
type: io.kestra.plugin.ai.provider.GitHubModelsExamples
yaml
id: chat_completion
namespace: company.ai
inputs:
- id: prompt
type: STRING
tasks:
- id: chat_completion
type: io.kestra.plugin.ai.completion.ChatCompletion
provider:
type: io.kestra.plugin.ai.provider.GitHubModels
gitHubToken: "{{ secret('GITHUB_TOKEN') }}"
modelName: gpt-4o-mini
messages:
- type: SYSTEM
content: You are a helpful assistant, answer concisely.
- type: USER
content: "{{inputs.prompt}}"