tamu-edu/GPT Generate (Azure)

GPT generation using Azure with OIDC authentication

View on GitHub

Trust Signals

Scorecard Score
not yet scored
Maintenance Recency
Stale
License
None
namedescriptionrequireddefault
api-base-urlThe OpenAI base URL of the API endpoint.yes
azure-client-idThe client ID of the service principal that will be used for OIDC authentication. yes
azure-subscription-idThe ID of the subscription that will be used for OIDC authentication. yes
azure-tenant-idThe ID of the tenant that will be used for OIDC authentication.no68f381e3-46da-47b9-ba57-6f322b8f0da1
frequency_penaltyA value between 0 and 2. Reduce the chance of repeating a token proportionally based on how often it has appeared in the text so far. This decreases the likelihood of repeating the exact same text in a response. no0
gpt-model-deployment-nameThe name of the model deployment as specified during creation in Azure. yes
max_tokensSet a limit on the number of tokens per model response. The API supports a maximum of 4000 tokens shared between the prompt (including system message, examples, message history, and user query) and the model's response. One token is roughly 4 characters for typical English text. no800
presence_penaltyA value between 0 and 2. Reduce the chance of repeating any token that has appeared in the text at all so far. This increases the likelihood of introducing new topics in a response. no0
promptThe prompt provided to GPTyes
temperatureA value between 0 and 1. Controls randomness. Lowering the temperature means that the model will produce more repetitive and deterministic responses. Increasing the temperature will result in more unexpected or creative responses. Try adjusting temperature or Top P but not both. no1
top_probabilitiesA value between 0 and 2. Similar to temperature, this controls randomness but uses a different method. Lowering Top P will narrow the model's token selection to likelier tokens. Increasing Top P will let the model choose from tokens with both high and low likelihood. Try adjusting temperature or Top P but not both. no.5
namedescription
generated-responseThe GPT generated response