Hy @Logan M
When i'm using deepseek api key then its showing :
openai.APIStatusError: Error code: 402 - {'error': {'message': 'Insufficient Balance', 'type': 'unknown_error', 'param': None, 'code': 'invalid_request_error'}}
This is my source code:
from llama_index.llms.deepseek import DeepSeek
# Set up the DeepSeek class with the required model and API key
llm = DeepSeek(model="deepseek-chat", api_key="******************")
# Call the complete method with a query
response = llm.complete("Explain the importance of low latency LLMs")
print(f'Response: {response}')