with Token Metrics and OpenAI (ChatGPT)?
Emit new event when a new batch is completed in OpenAI. See the documentation
Emit new event when a new file is created in OpenAI. See the documentation
Emit new event when a new fine-tuning job is created in OpenAI. See the documentation
Emit new event every time a run changes its status. See the documentation
Retrieve AI-generated reports providing comprehensive analyses of cryptocurrency tokens, including deep dives, investment analyses, and code reviews. See the documentation
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Get the Top 10 and Bottom 10 correlation of tokens with the top 100 market cap tokens. See the documentation
Chat using the web search tool. See the documentation
Get the latest list of crypto investors and their scores. See the documentation
The Token Metrics API integration for Pipedream provides comprehensive access to cryptocurrency data, analytics, and AI-powered insights. This component enables seamless integration of advanced token metrics, market analysis, and trading intelligence into your automated workflows.
Token Metrics delivers institutional-grade cryptocurrency analytics, including AI-generated reports, trading signals, fundamental and technical analysis, market metrics, and performance data across thousands of digital assets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
token_metrics: {
type: "app",
app: "token_metrics",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tokenmetrics.com/v2/tokens`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.token_metrics.$auth.api_key}`,
},
})
},
})
OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:
Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})