We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
不支持文件接口哦
Sorry, something went wrong.
那这个模型如何进行微调啊?因为GPT3模型是需要付费的,所以我想用这个免费的来微调,如果不支持文件上传,那是不是不能微调?
No branches or pull requests
Describe the bug 描述bug
发生意外错误: Error code: 404 - {'timestamp': 1732457108046, 'status': 404, 'error': 'Not Found', 'path': '//files'}
my code 我的代码
WHY?
The text was updated successfully, but these errors were encountered: