最近的项目中用到GPT,简单封装一下。包含创建助手、上传文件、创建线程、创建消息线程、运行线程、删除等操作。
我是使用的异步,同步大差不大,去掉async、await就行了,调用方法都是一样的。
官方API接口:https://platform.openai.com/docs/api-reference/assistants
核心代码
测试运行
api_key = "sk----------"
assistant_id = "asst_R3KqDZNg4QPzxd6U56INh0Cd"
thread_id = "thread_vWZ9QrPBPTDHrtxIiSIof3hs"
file_assistant_gpt = FileAssistant(api_key,assistant_id, thread_id)
await file_assistant_gpt.run_file_analysis("data.txt","请帮我分析该文件...")
评论 (0)