You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue has been automatically marked as stale because it has not had activity within 90 days. It will be automatically closed if no further activity occurs within 30 days.
We are working on adding a new Pipeline block that uses the chat completions API. However, I don't think there's a definite date to move all the existing Pipelines in data generation over to chat completions versus completions. I agree that ideally we'd only use the chat completions API, but an audit of our completions usage needs to be done to ensure that would work. Today we handling the prompt templates client-side for most of data generation, where the chat completions API handles that server-side via chat templates which doesn't let us directly change how we format prompts based on client-side needs per completion request.
Currently the legacy v1 API calls are used, so there are a lot of limits in terms of modes and the TPM of them.
https://platform.openai.com/docs/api-reference/completions/create
there should be a check for endpoint https://api.openai.com/v1/completions or https://api.openai.com/v1/chat/completions
as currently the SDG fails with just using the newer type:
vs new:
The text was updated successfully, but these errors were encountered: