came here looking for this - did you find anything
came here looking for this - did you find anything
otel-cf-workers package setup, so I'd want to attach logs to traces automatically and have the logs easily searchable within Baselime.
global rate limit 1200 requests per 5 minutes, shared with your account including dashboard, and all request have to go back to core/no edge caching

const fileContent = "This is a simple text file.";
const file = new File([fileContent], "simple_text_file.txt", {
type: "text/plain",
});
formData.set("file", file);
formData.append("purpose", "fine-tune")
const fetchOptions: RequestInit = {
method: "POST",
headers: {
Authorization: `Bearer ${apiKey}`,
},
body: formData,
};
// Make the POST request to OpenAI
const response = await fetch("https://api.openai.com/v1/files", fetchOptions);otel-cf-workers