Add create-chat-conversation function and related configurations

This commit is contained in:
2026-02-03 09:26:30 -06:00
parent e1d865e6c3
commit e024057e47
6 changed files with 163 additions and 29 deletions
+11
View File
@@ -15,3 +15,14 @@ entrypoint = "./functions/ai-generate-plan/index.ts"
# enabled = false
# verify_jwt = false
# import_map = "./functions/ai-structured/deno.json"
[functions.create-chat-conversation]
enabled = true
verify_jwt = true
import_map = "./functions/create-chat-conversation/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
entrypoint = "./functions/create-chat-conversation/index.ts"
# Specifies static files to be bundled with the function. Supports glob patterns.
# For example, if you want to serve static HTML pages in your function:
# static_files = [ "./functions/create-chat-conversation/*.html" ]