DeepSeek is an AI-powered tool that helps developers quickly find, understand, and optimize code using natural language search and contextual suggestions. It integrates seamlessly with your workflow, offering insights into your codebase to improve productivity and code quality. Perfect for teams and solo developers, DeepSeek simplifies code navigation and accelerates development.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
deepseek: {
type: "app",
app: "deepseek",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.deepseek.$auth.base_url}/user/balance`,
headers: {
Authorization: `Bearer ${this.deepseek.$auth.api_key}`,
},
})
},
})
Creates a chat completion using the DeepSeek API. See the documentation
Lists the currently available models, and provides basic information about each one such as the owner and availability. See the documentation
DeepSeek uses API keys for authentication. When you connect your DeepSeek account, Pipedream securely stores the keys so you can easily authenticate to DeepSeek APIs in both code and no-code steps.