Files
2026-07-13 12:38:34 +08:00

21 lines
594 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Wrangler config for the OpenAI × Composio Workers example.
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "openai-composio-example",
"main": "src/cloudflare.ts",
"compatibility_date": "2025-06-20",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true,
},
/**
* COMPOSIO_API_KEY and OPENAI_API_KEY are provided as Worker secrets, not
* committed here:
* wrangler secret put COMPOSIO_API_KEY
* wrangler secret put OPENAI_API_KEY
*/
}