/** * Generative AI Service Inference API * OCI Generative AI is a fully managed service that provides a set of state-of-the-art, customizable large language models (LLMs) that cover a wide range of use cases for text generation, summarization, and text embeddings. Use the Generative AI service inference API to access your custom model endpoints, or to try the out-of-the-box models to {@link #eNGenerative-ai-inferenceLatestChatResultChat(ENGenerative-ai-inferenceLatestChatResultChatRequest) eNGenerative-ai-inferenceLatestChatResultChat}, {@link #eNGenerative-ai-inferenceLatestGenerateTextResultGenerateText(ENGenerative-ai-inferenceLatestGenerateTextResultGenerateTextRequest) eNGenerative-ai-inferenceLatestGenerateTextResultGenerateText}, {@link #eNGenerative-ai-inferenceLatestSummarizeTextResultSummarizeText(ENGenerative-ai-inferenceLatestSummarizeTextResultSummarizeTextRequest) eNGenerative-ai-inferenceLatestSummarizeTextResultSummarizeText}, and {@link #eNGenerative-ai-inferenceLatestEmbedTextResultEmbedText(ENGenerative-ai-inferenceLatestEmbedTextResultEmbedTextRequest) eNGenerative-ai-inferenceLatestEmbedTextResultEmbedText}. To use a Generative AI custom model for inference, you must first create an endpoint for that model. Use the {@link #eNGenerative-aiLatest(ENGenerative-aiLatestRequest) eNGenerative-aiLatest} to {@link #eNGenerative-aiLatestModel(ENGenerative-aiLatestModelRequest) eNGenerative-aiLatestModel} by fine-tuning an out-of-the-box model, or a previous version of a custom model, using your own data. Fine-tune the custom model on a {@link #eNGenerative-aiLatestDedicatedAiCluster(ENGenerative-aiLatestDedicatedAiClusterRequest) eNGenerative-aiLatestDedicatedAiCluster}. Then, create a {@link #eNGenerative-aiLatestDedicatedAiCluster(ENGenerative-aiLatestDedicatedAiClusterRequest) eNGenerative-aiLatestDedicatedAiCluster} with an {@link Endpoint} to host your custom model. For resource management in the Generative AI service, use the {@link #eNGenerative-aiLatest(ENGenerative-aiLatestRequest) eNGenerative-aiLatest}. To learn more about the service, see the [Generative AI documentation](https://docs.oracle.com/iaas/Content/generative-ai/home.htm). **Important:** The IP addresses behind each DNS endpoint might change over time. Always use the DNS hostname listed under the following **API Endpoints** section and avoid using hard-coded fixed IP addresses. * OpenAPI spec version: 20231130 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Details for the chat request. */ export interface GenericChatRequest extends model.BaseChatRequest { /** * The series of messages in a chat request. Includes the previous messages in a conversation. Each message includes a role ({@code USER} or the {@code CHATBOT}) and content. */ "messages"?: Array; /** * Constrains effort on reasoning for reasoning models. Currently supported values are minimal, low, medium, and high. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response. * */ "reasoningEffort"?: GenericChatRequest.ReasoningEffort; /** * Constrains the verbosity of the model's response. Lower values will result in more concise responses, while higher values will result in more verbose responses. * */ "verbosity"?: GenericChatRequest.Verbosity; /** * Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format, and querying for objects via API or the dashboard. *

Keys are strings with a maximum length of 64 characters. Values are strings with a maximum length of 512 characters. * */ "metadata"?: any; /** * Whether to stream back partial progress. If set to true, as tokens become available, they are sent as data-only server-sent events. */ "isStream"?: boolean; "streamOptions"?: model.StreamOptions; /** * The number of of generated texts that will be returned. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "numGenerations"?: number; /** * If specified, the backend will make a best effort to sample tokens deterministically, so that repeated requests with the same seed and parameters yield the same result. However, determinism cannot be fully guaranteed. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "seed"?: number; /** * Whether to include the user prompt in the response. Applies only to non-stream results. */ "isEcho"?: boolean; /** * An integer that sets up the model to use only the top k most likely tokens in the generated output. A higher k introduces more randomness into the output making the output text sound more natural. Default value is -1 which means to consider all tokens. Setting to 0 disables this method and considers all tokens. *

If also using top p, then the model considers only the top tokens whose probabilities add up to p percent and ignores the rest of the k tokens. For example, if k is 20, but the probabilities of the top 10 add up to .75, then only the top 10 tokens are chosen. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "topK"?: number; /** * If set to a probability 0.0 < p < 1.0, it ensures that only the most likely tokens, with total probability mass of p, are considered for generation at each step. *

To eliminate tokens with low likelihood, assign p a minimum percentage for the next token's likelihood. For example, when p is set to 0.75, the model eliminates the bottom 25 percent for the next token. Set to 1 to consider all tokens and set to 0 to disable. If both k and p are enabled, p acts after k. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "topP"?: number; /** * A number that sets the randomness of the generated output. A lower temperature means a less random generations. *

Use lower numbers for tasks with a correct answer such as question answering or summarizing. High temperatures can generate hallucinations or factually incorrect information. Start with temperatures lower than 1.0 and increase the temperature for more creative outputs, as you regenerate the prompts to refine the outputs. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "temperature"?: number; /** * To reduce repetitiveness of generated tokens, this number penalizes new tokens based on their frequency in the generated text so far. Values > 0 encourage the model to use new tokens and values < 0 encourage the model to repeat tokens. Set to 0 to disable. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "frequencyPenalty"?: number; /** * To reduce repetitiveness of generated tokens, this number penalizes new tokens based on whether they've appeared in the generated text so far. Values > 0 encourage the model to use new tokens and values < 0 encourage the model to repeat tokens. *

Similar to frequency penalty, a penalty is applied to previously present tokens, except that this penalty is applied equally to all tokens that have already appeared, regardless of how many times they've appeared. Set to 0 to disable. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "presencePenalty"?: number; /** * List of strings that stop the generation if they are generated for the response text. The returned output will not contain the stop strings. */ "stop"?: Array; /** * Includes the logarithmic probabilities for the most likely output tokens and the chosen tokens. *

For example, if the log probability is 5, the API returns a list of the 5 most likely tokens. The API returns the log probability of the sampled token, so there might be up to logprobs+1 elements in the response. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "logProbs"?: number; /** * The maximum number of tokens that can be generated per output sequence. The token count of your prompt plus maxTokens must not exceed the model's context length. For on-demand inferencing, the response length is capped at 4,000 tokens for each run. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "maxTokens"?: number; /** * An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and reasoning tokens. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "maxCompletionTokens"?: number; /** * Modifies the likelihood of specified tokens that appear in the completion. *

Example: '{\"6395\": 2, \"8134\": 1, \"21943\": 0.5, \"5923\": -100}' * */ "logitBias"?: any; "prediction"?: model.StaticContent; "responseFormat"?: model.TextResponseFormat | model.JsonObjectResponseFormat | model.JsonSchemaResponseFormat; "toolChoice"?: model.ToolChoiceFunction | model.ToolChoiceNone | model.ToolChoiceAuto | model.ToolChoiceRequired; /** * Whether to enable parallel function calling during tool use. */ "isParallelToolCalls"?: boolean; /** * A list of tools the model may call. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported. */ "tools"?: Array; "webSearchOptions"?: model.WebSearchOptions; /** * Specifies the processing type used for serving the request. */ "serviceTier"?: GenericChatRequest.ServiceTier; "apiFormat": string; } export declare namespace GenericChatRequest { enum ReasoningEffort { None = "NONE", Minimal = "MINIMAL", Low = "LOW", Medium = "MEDIUM", High = "HIGH" } enum Verbosity { Low = "LOW", Medium = "MEDIUM", High = "HIGH" } enum ServiceTier { Auto = "AUTO", Default = "DEFAULT", Priority = "PRIORITY" } function getJsonObj(obj: GenericChatRequest, isParentJsonObj?: boolean): object; const apiFormat = "GENERIC"; function getDeserializedJsonObj(obj: GenericChatRequest, isParentJsonObj?: boolean): object; }