chatanywhere / GPT_API_free

Free ChatGPT API Key,免费ChatGPT API,支持GPT4 API(免费),ChatGPT国内可用免费转发API,直连无需代理。可以搭配ChatBox等软件/插件使用,极大降低接口使用成本。国内即可无限制畅快聊天。
MIT License
25.18k stars 1.89k forks source link

Error code: 404 - {'timestamp': 1732457108046, 'status': 404, 'error': 'Not Found', 'path': '//files'} #326

Open momomos-self opened 5 days ago

momomos-self commented 5 days ago

Describe the bug 描述bug 发生意外错误: Error code: 404 - {'timestamp': 1732457108046, 'status': 404, 'error': 'Not Found', 'path': '//files'}

my code 我的代码

import openai
import os
model_name = 'gpt-3.5-turbo-0125'  # unuse暂时没用
client = openai.Client(
    api_key = "myapi",
    base_url = "https://api.chatanywhere.tech/v1"
)
try:
    with open("data/train.jsonl", "rb") as file:
        response = client.files.create(file=file, purpose="fine-tune")
    print("文件上传成功")
    print(client.files.list()) # 列出文件
except FileNotFoundError:
    print("找不到文件。请确保文件名和路径正确。")
except PermissionError as e:
    print(f"权限错误: {e}")
except Exception as e:
    print(f"发生意外错误: {e}")

WHY?

chatanywhere commented 5 days ago

不支持文件接口哦

momomos-self commented 5 days ago

不支持文件接口哦

那这个模型如何进行微调啊?因为GPT3模型是需要付费的,所以我想用这个免费的来微调,如果不支持文件上传,那是不是不能微调?