This topic was automatically generated from Slack. You can find the original thread here.
are the o1 openai models available for use in the platform>
This topic was automatically generated from Slack. You can find the original thread here.
are the o1 openai models available for use in the platform>
You should visit OpenAI (ChatGPT) API Integrations - Pipedream for the latest information on using OpenAI models on Pipedream. However, I’ll do my best to answer your question. The OpenAI models, including the latest ones, are available for use on the Pipedream platform. You can interact with these models using the OpenAI (ChatGPT) integration. This integration allows you to make API requests to OpenAI’s endpoints, such as the models endpoint, to access and utilize various AI models provided by OpenAI. For more detailed instructions on how to use OpenAI models within Pipedream, you can refer to the OpenAI (ChatGPT) integration documentation.
the o1 models don’t show as an option in the props
It seems like you’re having trouble with the options not appearing in the props for the o1 models. To help you better, I need a bit more information: 1. Are you trying to configure a specific Pipedream component or integration? 2. Could you provide more details about the app or API you’re working with? 3. Are you using a custom component or one of Pipedream’s pre-built components? If you’re using a pre-built component, ensure that the options method is correctly fetching the available models from the API. If you’re building a custom component, you might need to implement an async options
method to dynamically fetch and display the available models. Here’s a basic example of how you might implement an async options
method: async options() { const response = await axios(this, { method: "GET", url: `https://api.example.com/models`, headers: { Authorization: `Bearer ${this.api_key}`, }, }); return response.data.models.map((model) => { return { label: model.name, value: model.id }; }); },
This code snippet assumes that the API returns a list of models, each with a name
and id
. Adjust the URL and response parsing as needed for your specific API. If you need further assistance, please provide more context or visit Pipedream Support for additional help.
I’m talking about the pipedream pre-made functions for openai ChatGPT models
the o1 models are available on specific openai tiers - you’ll need to be a Tier 5 user to get access to them via the API.
https://platform.openai.com/docs/guides/rate-limits/#usage-tiers
Thank you. We unfortunately are tier 4 atm.
at tier 4, it looks like you should have access to o1-preview
and o1-mini
.