温度と同様に、これはランダム性を制御しますが、異なる方法を使用します。上部の P を下げると、モデルのトークンの選択がより可能性の高いトークンに絞り込まれます。上位 P を増やすと、モデルは可能性の高いトークンと低いトークンから選択できるようになります。温度または上部 P のどちらかを調整してみてください。両方は調整しないでください。
複数の会話
新しい API リクエストごとに含める過去のメッセージの数を選択します。これは、新しいユーザー クエリにモデル コンテキストを提供するのに役立ちます。この数値を 10 に設定すると、a8093152e673feb7aba1828c43532094 ユーザーのクエリと a8093152e673feb7aba1828c43532094 システムの応答が発生します。
#Note: The openai-python library support for Azure OpenAI is in preview.import osimport openaiopenai.api_type = "azure"openai.api_base = "https://docs-test-001.openai.azure.com/"openai.api_version = "2023-05-15"openai.api_key = os.getenv("OPENAI_API_KEY")response = openai.ChatCompletion.create(engine="gpt-35-turbo", # replace this value with the deployment name you chose when you deployed the associated model.messages = [{"role":"system","content":"You are an Xbox customer support agent whose primary goal is to help users with issues they are experiencing with their Xbox devices. You are friendly and concise. You only provide factual answers to queries, and do not provide answers that are not related to Xbox."},{"role":"user","content":"How much is a PS5?"},{"role":"assistant","content":"I apologize, but I do not have information about the prices of other gaming devices such as the PS5. My primary focus is to assist with issues regarding Xbox devices. Is there a specific issue you are having with your Xbox device that I may be able to help with?"},{"role":"user","content":"I am interested in buying an Xbox?"},{"role":"assistant","content":"Great! There are several Xbox models available in the market, including the Xbox Series X, Xbox Series S, and Xbox One. The Xbox Series X is the latest and most powerful console, while the Xbox Series S is a more affordable option that still offers great performance. The Xbox One is the previous generation console, but it still has a large library of games available to play.\n\nBefore purchasing an Xbox, you may want to consider factors such as your budget, the types of games you want to play, and whether you want to play games in 4K resolution. Once you have decided on a console, you can purchase it from a retailer or directly from the Xbox website. Let me know if you have any other questions or concerns!"},{"role":"user","content":"Which models are 4K?"},{"role":"assistant","content":"Both the Xbox Series X and Xbox One X support 4K resolution gaming. The Xbox Series S, on the other hand, supports up to 1440p resolution gaming, but it can upscale games to 4K. It's worth noting that in order to take advantage of 4K gaming, you'll need a 4K TV or monitor that supports HDR (High Dynamic Range) and HDMI 2.0 or higher."}],temperature=0,max_tokens=350,top_p=0.95,frequency_penalty=0,presence_penalty=0,stop=None)
#Microsoft、Android および Apple デバイス用の Bing AI チャット ウィジェットを開始
Bing で開始 100 日Microsoft AI Search は、一連のエキサイティングなシステム アップデートで祝われています。これらのアップデートの中で、iOS および Android プラットフォームのモバイル画面向けに特別に設計されたチャットボット ウィジェットが導入されました。ここで Microsoft のブログ投稿を参照してください。この新機能...
Microsoft が Power BI 用の新しい表形式モデル定義言語を発表
Windows 8.1 上の Power BI Desktop のサポート終了日が Microsoft によって発表されました。このテクノロジー巨人は最近、主要なデータ分析プラットフォームを更新し、その他の新機能の中でも特に TypeScript のサポートを追加しました。 Power BI は本日、新しい表形式モデル定義言語 (TMDL) をリリースしました
ChromeOS Flex USB を Linux システムでセットアップできるようになりました
ChromeOS Flex が公開されました。 PC と Mac で利用できます。当時 Google が下した非常に迷惑な決定の 1 つは、Ubuntu や Linux Mint などの Linux ディストリビューションと互換性のない Chromebook リカバリ ユーティリティを使用してインストーラー USB をセットアップする必要があるということでした。他に持っていない限り...
以上がクイックスタート: Azure OpenAI Service で ChatGPT および GPT-4 の使用を開始するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。