Skip to content

hehan-wang/openai_api_python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

openai_api_python

the course of openai api

环境安装

1. 安装anaconda

https://www.anaconda.com/products/individual

2. 创建虚拟环境

conda create -n openai_api_python python=3.11

3. 激活虚拟环境

conda activate openai_api_python

4. 安装依赖

pip install -r requirements.txt

OpenAI Key 准备

开了个50刀额度的token,openai的所有接口都能用,免翻墙使用。

域名:https://key.wenwen-ai.com
key:sk-6V2exWFBSa2lmuZ7C0D773D1BaEd4fB7A1B6A0A265D550C6

# 代码运行前,需要设置环境变量
import os
os.environ['OPENAI_BASE_URL'] = 'https://key.wenwen-ai.com/v1'
os.environ['OPENAI_API_KEY'] = 'sk-6V2exWFBSa2lmuZ7C0D773D1BaEd4fB7A1B6A0A265D550C6'

About

the course of openai api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published