diff --git a/dotCMS/src/main/resources/apps/dotAI.yml b/dotCMS/src/main/resources/apps/dotAI.yml index d23962e1e4f0..e8f03c0c5f80 100644 --- a/dotCMS/src/main/resources/apps/dotAI.yml +++ b/dotCMS/src/main/resources/apps/dotAI.yml @@ -15,7 +15,7 @@ params: hint: "Your ChatGPT API key" required: true textModelNames: - value: "" + value: "gpt-4o" hidden: false type: "STRING" label: "Model Names" @@ -64,7 +64,7 @@ params: hint: "Enable completion model used to generate OpenAI API response." required: false imageModelNames: - value: "" + value: "dall-e-3" hidden: false type: "STRING" label: "Image Model Names" @@ -132,7 +132,7 @@ params: hint: "Enable completion model used to generate OpenAI API response." required: false embeddingsModelNames: - value: "" + value: "text-embedding-ada-002" hidden: false type: "STRING" label: "Embeddings Model Names" diff --git a/dotcms-integration/pom.xml b/dotcms-integration/pom.xml index cf321d39bb74..20b6010ed32a 100644 --- a/dotcms-integration/pom.xml +++ b/dotcms-integration/pom.xml @@ -411,9 +411,9 @@ ${test.webapp.root}/WEB-INF/velocity ${test.webapp.root}/WEB-INF/geoip2/GeoLite2-City.mmdb ${test.webapp.root}/WEB-INF/bin - http://localhost:50505/e - http://localhost:50505/e - http://localhost:50505/m + http://localhost:50505/e + http://localhost:50505/m + true ${it.test.fork-folder}${surefire.forkNumber}/${test.temp.folder} diff --git a/dotcms-postman/src/main/resources/postman/AI.postman_collection.json b/dotcms-postman/src/main/resources/postman/AI.postman_collection.json index 843bae2abc0b..9a49e8bcd38e 100644 --- a/dotcms-postman/src/main/resources/postman/AI.postman_collection.json +++ b/dotcms-postman/src/main/resources/postman/AI.postman_collection.json @@ -60,7 +60,7 @@ ], "body": { "mode": "raw", - "raw": "{\n \"apiKey\": {\n \"value\": \"some-api-key-1a2bc3\"\n },\n \"textModelNames\": {\n \"value\": \"gpt-3.5-turbo-16k\"\n },\n \"textModelMaxTokens\": {\n \"value\":\"16384\"\n },\n \"imageModelNames\": {\n \"value\": \"dall-e-3\"\n },\n \"imageSize\": {\n \"value\": \"1024x1024\"\n },\n \"imageModelMaxTokens\": {\n \"value\":\"0\"\n },\n \"embeddingsModelNames\": {\n \"value\": \"text-embedding-ada-002\"\n },\n \"embeddingsModelMaxTokens\": {\n \"value\":\"8191\"\n },\n \"listenerIndexer\": {\n \"value\": \"{\\\"default\\\":\\\"blog,dotcmsdocumentation,feature,ProductBriefs,news,report.file,builds,casestudy\\\",\\\"documentation\\\":\\\"dotcmsdocumentation\\\"}\"\n }\n}\n" + "raw": "{\n \"apiKey\": {\n \"value\": \"some-api-key-1a2bc3\"\n },\n \"textModelNames\": {\n \"value\": \"gpt-4o\"\n },\n \"textModelMaxTokens\": {\n \"value\":\"16384\"\n },\n \"imageModelNames\": {\n \"value\": \"dall-e-3\"\n },\n \"imageSize\": {\n \"value\": \"1024x1024\"\n },\n \"imageModelMaxTokens\": {\n \"value\":\"0\"\n },\n \"embeddingsModelNames\": {\n \"value\": \"text-embedding-ada-002\"\n },\n \"embeddingsModelMaxTokens\": {\n \"value\":\"8191\"\n },\n \"listenerIndexer\": {\n \"value\": \"{\\\"default\\\":\\\"blog,dotcmsdocumentation,feature,ProductBriefs,news,report.file,builds,casestudy\\\",\\\"documentation\\\":\\\"dotcmsdocumentation\\\"}\"\n }\n}\n" }, "url": { "raw": "{{serverURL}}/api/v1/apps/dotAI/SYSTEM_HOST", @@ -3140,7 +3140,7 @@ "listen": "test", "script": { "exec": [ - "pm.test('Status code should be ok 20', function () {", + "pm.test('Status code should be ok 200', function () {", " pm.response.to.have.status(200);", "});", "",