File tree Expand file tree Collapse file tree 2 files changed +77
-7
lines changed
ai-hub/ai-document-converter/policies/terraform Expand file tree Collapse file tree 2 files changed +77
-7
lines changed Original file line number Diff line number Diff line change 1- output "app_url" {
2- description = " Application URL"
3- value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } ui/"
4- }
1+ output "base_url" {
2+ description = " Application Base URL"
3+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } "
4+ }
5+
6+ output "mcp_endpoint" {
7+ description = " MCP Endpoint"
8+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } mcp"
9+ }
10+
11+ output "playground_ui" {
12+ description = " Playground UI"
13+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } ui/playground"
14+ }
15+
16+ output "api_reference" {
17+ description = " API Reference"
18+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } ui/docs"
19+ }
20+
21+ output "api_schema" {
22+ description = " API Schema"
23+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } api/openapi.json"
24+ }
25+
26+ output "api_endpoint_convert" {
27+ description = " API Endpoint - Convert PDF from Object Storage to Markdown"
28+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } api/convert"
29+ }
30+
31+ output "api_endpoint_convert_file" {
32+ description = " API Endpoint - Convert PDF uploaded as file to Markdown"
33+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } api/convert/file"
34+ }
35+
36+ output "api_endpoint_list_apis" {
37+ description = " API Endpoint - Supported APIs for Document Conversion"
38+ value = " ${ oci_apigateway_deployment . ai_application_apigateway_deployment . endpoint } api/list"
39+ }
Original file line number Diff line number Diff line change @@ -277,14 +277,49 @@ variables:
277277
278278
279279outputGroups :
280- - title : " Application URL "
280+ - title : " Application URLs "
281281 outputs :
282- - app_url
282+ - playground_ui
283+ - base_url
284+ - mcp_endpoint
285+ - api_reference
286+ - api_schema
287+ - api_endpoint_convert
288+ - api_endpoint_convert_file
289+ - api_endpoint_list_apis
283290
284291outputs :
285- app_url :
292+ playground_ui :
286293 type : link
287294 title : " Playground UI URL"
288295 visible : true
296+ base_url :
297+ type : link
298+ title : " Application Base URL"
299+ visible : true
300+ mcp_endpoint :
301+ type : link
302+ title : " MCP Endpoint"
303+ visible : true
304+ api_reference :
305+ type : link
306+ title : " API Reference"
307+ visible : true
308+ api_schema :
309+ type : link
310+ title : " API Schema"
311+ visible : true
312+ api_endpoint_convert :
313+ type : link
314+ title : " API Endpoint - Convert from OSS"
315+ visible : true
316+ api_endpoint_convert_file :
317+ type : link
318+ title : " API Endpoint - Convert from File"
319+ visible : true
320+ api_endpoint_list_apis :
321+ type : link
322+ title : " API Endpoint - Supported APIs"
323+ visible : true
289324
290325
You can’t perform that action at this time.
0 commit comments