当前位置: 首页 > article >正文

404 error when doing workload anlysis using locust on OpenAI API (GPT.35)

题意:"使用 Locust 对 OpenAI API (GPT-3.5) 进行工作负载分析时出现 404 错误。"

问题背景:

I am trying to do some workload analysis on OpenAI GPT-3.5-TURBO using locust.

"我正在使用 Locust 对 OpenAI GPT-3.5-TURBO 进行一些工作负载分析。"

from locust import HttpUser, between, task


class OpenAIUser(HttpUser):

    wait_time = between(1, 2)  # wait between 1 and 2 seconds
    host = "https://api.openai.com/"

    def on_start(self):

        self.headers = {
            "Content-Type": "application/json",
            "Authorization": "Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
        }

        self.data = {
            "model": "gpt-3.5-turbo",
            "messages": [
                {
                    "role": "system",
                    "content": "You are a helpful story teller."
                },
                {
                    "role": "user",
                    "content": "Tell me a 100 word story"
                }
            ]
        }

    @task
    def test_chat_completion(self):
        self.client.post(
            "https://api.openai.com/v1/chat/completion/",
            json=self.data,
            headers=self.headers
        )

I get this error:        

得到如下错误信息:

POST /v1/chat/completion/: HTTPError('404 Client Error: Not Found for url: /v1/chat/completion/')

My script for Azure OpenAI workload analysis works fine with this exact same structure. What am I missing?

"我用于 Azure OpenAI 工作负载分析的脚本在相同的结构下运行正常。我漏掉了什么?"

问题解决:

Typo error. Should be:

"拼写错误。应该是:"

https://api.openai.com/v1/chat/completions

and not:        而不是:

https://api.openai.com/v1/chat/completion/


http://www.kler.cn/a/301742.html

相关文章:

  • ThreadLocal 的使用场景
  • HarmonyOS鸿蒙开发 弹窗及加载中指示器HUD功能实现
  • 备考蓝桥杯:顺序表相关算法题
  • 单元测试MockitoExtension和SpringExtension
  • 如何让用户在网页中填写PDF表格?
  • Ubuntu中使用miniconda安装R和R包devtools
  • 【深度学习 Pytorch】深入浅出:使用PyTorch进行模型训练与GPU加速
  • 泛零售行业的营销自动化现状如何?
  • Vue3+vite使用i18n国际化
  • 军事目标无人机视角检测数据集 3500张 坦克 带标注voc
  • 剖析 MySQL 数据库连接池(C++版)
  • Docker简介在Centos和Ubuntu环境下安装Docker
  • 详细介绍 Redis 列表的应用场景
  • 【三刷C语言】各种注意事项
  • 常用Java API
  • c# resource en-US
  • 4.qml单例模式
  • 智能医学(四)——Elsevier特刊推荐
  • 科技之光,照亮未来之路“2024南京国际人工智能展会”
  • 系统架构设计师:数据库设计
  • 【MySQL】了解并操作MySQL的缓存配置与信息
  • HarmonyOS 4.0增强的安全性
  • 自选择问题和处理效应模型
  • 逆元(模板)
  • 【GeekBand】C++设计模式笔记1_介绍
  • Azkaban、oozie、airflow、dolphinschduler 对比分析