I’m new to OpenAI and designing LLM and stuck with below erroe. I’ve credit with OpenAi platform ( 5$ ).
Please can someone help me out
Code:
import os
os.environ ['OPENAI_API_KEY]= "sk-***"
from langchain.llms import OpenAI
llm = OpenAI(temperature=0.7)
name = llm("what is your name?")
print(name)
Error :
PermissionDeniedError: Error code: 403 - {'error': {'message': 'Project `proj_DluO7o1Oq02i6RPBZSa74yNc` does not have access to model `gpt-3.5-turbo-instruct`', 'type': 'invalid_request_error', 'param': None, 'code': 'model_not_found'}}