baningugozira
@baningugozira

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

cursorのapiリクエストエラーについて

解決したいこと

cursorでGeminiとdeepseekのAIモデルを使用しているのですが、Geminiが chatにてエラーを吐いて使えなくなったのでその原因を知りたいです。

発生している問題・エラー

unable to reach api.deepseek.com

We encountered an issue when using your api.deepseek.com API key. Please check your API key settings and try again. API Error:

{"error":{"message":"Authentication Fails (no such user)","type":"authentication_error","param":null,"code":"invalid_request_error"}}

補足

deepseekのAPI KeyはOpenAI API Kyeの欄に記載し、BeseURLを
「 https://api.deepseek.com/v1
と指定しています。これを消したらGeminiが使用でき、入れたままだとdeepseekしか使用できないと言った具合です。できれば消したりせずに両方使えるようにしたいです、、、。

0

1Answer

To retrieve a secret from AWS Secrets Manager using the AWS CLI, you can use the following command:

puts 'aws secretsmanager get-secret-value --secret-id <SecretName>'

Replace with the name or ARN of your secret. If the secret contains a JSON string, you can extract specific values using jq:

aws secretsmanager get-secret-value --secret-id <SecretName> --query SecretString --output text | jq '.key'

Make sure you have proper IAM permissions to access the secret.

0Like

Your answer might help someone💌