<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: May Developer Challenge - AI Services - Week 5 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720143#M2028339</link>
    <description>&lt;P&gt;Here is my Week 5 Submission!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CameronWilson_0-1717440391532.png" style="width: 614px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/118872i630D94EED2E19797/image-dimensions/614x330?v=v2" width="614" height="330" role="button" title="CameronWilson_0-1717440391532.png" alt="CameronWilson_0-1717440391532.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Jun 2024 18:46:51 GMT</pubDate>
    <dc:creator>CameronWilson</dc:creator>
    <dc:date>2024-06-03T18:46:51Z</dc:date>
    <item>
      <title>May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13715701#M2028278</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Welcome to the last week of the AI Developer Challenge! Thank you so much for your collaboration! I love to see the exchange in the discussion! This week we want to take our model and deploy it to then make predictions using our model. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Now in the real world we would retrain the model with some feature engineering and by using the outcome of our feature importance. But we only have 5 Wednesdays in May and we want to finish the process of training and serving a model with Data Attribute Recommendation (DAR)! You are welcome to try to improve your model&amp;nbsp;share it here as well! Maybe start with feature selection and train a model using only the most important features this time?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is what we have to do to deploy a model using DAR:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Use the &lt;EM&gt;POST Create Deployment Configuration Regression&lt;/EM&gt;&amp;nbsp;request.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Assign the value of the &lt;EM&gt;deploymentExecutableIdRegression&lt;/EM&gt; (=”70db0a45-c2ab-4525-91c5-0ff763d3784f”) in your environment.&amp;nbsp; You can also find that ID using the &lt;EM&gt;GET List Executables&lt;/EM&gt;&amp;nbsp;request (make sure to use version 3 of the deployment executable for model template 'bdbcd699-4419-40a5-abb8-e7ad43dde49b’!)&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Double check that you are deploying the correct model using the &lt;EM&gt;GET List Artifacts&lt;/EM&gt; request and compare the artifact ids (&lt;EM&gt;modelArtifactIdRegression&lt;/EM&gt;). The scenario ID is still assigned from the previous steps.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;After creating the configuration use the &lt;EM&gt;POST Deploy Model Regression&lt;/EM&gt;&amp;nbsp;request to deploy your model. Your status will be UNKNOWN. Check the status using &lt;EM&gt;GET Get Deployment Regression details&lt;/EM&gt;&amp;nbsp;request. Your status should be RUNNING now. With the deployment url you get in the response, you can now query your model.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Go to last folder of the collections &lt;EM&gt;DAR API – Inference&lt;/EM&gt;&amp;nbsp;and open the &lt;EM&gt;POST POST Inference Regression&lt;/EM&gt;&amp;nbsp;request. Assign the deployment id from the previous step to the variable &lt;EM&gt;deploymentUrlRegression&lt;/EM&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Paste the following json into your body to predict avocado prices for the following two data entries:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="json"&gt;{
    "topN": 1,
    "objects": [
      {
          "objectId": "optional-identifier-1",
          "features": [
              {"name": "Date", "value": "2015-12-30"},
              {"name": "TotalVolume", "value": "74237.72"},
              {"name": "PLU4046", "value": "1037.64"},
              {"name": "PLU4225", "value": "36636.85"},
              {"name": "PLU4770", "value": "52.16"},
              {"name": "TotalBags", "value": "7589.96"},
              {"name": "SmallBags", "value": "9603.53"},
              {"name": "LargeBags", "value": "84.39"},
              {"name": "XLargeBags", "value": "0.0"},
              {"name": "type", "value": "conventional"},
              {"name": "year", "value": "2015"},
              {"name": "region", "value": "Albany"}
          ]
      },
      {
          "objectId": "optional-identifier-2",
          "features": [
              {"name": "Date", "value": "2015-03-16"},
              {"name": "TotalVolume", "value": "140487.57"},
              {"name": "PLU4046", "value": "4942.49"},
              {"name": "PLU4225", "value": "88080.11"},
              {"name": "PLU4770", "value": "5551.28"},
              {"name": "TotalBags", "value": "8697.87"},
              {"name": "SmallBags", "value": "8703.62"},
              {"name": "LargeBags", "value": "92.35"},
              {"name": "XLargeBags", "value": "0.0"},
              {"name": "type", "value": "conventional"},
              {"name": "year", "value": "2015"},
              {"name": "region", "value": "Indianapolis"}
          ]
      }
  ]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;&amp;nbsp;6.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;To SUBMIT your result post a screenshot of the prediction:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="noravonthenen_0-1716969992534.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/116992iF196DB1535A11A2F/image-size/large?v=v2&amp;amp;px=999" role="button" title="noravonthenen_0-1716969992534.png" alt="noravonthenen_0-1716969992534.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&lt;SPAN&gt;If you have made it here, GREAT WORK! You have completed 5 weeks of learning about SAP's AI Services!&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Thank you so much for participating and helping each other out! It is so much fun to be part of this community! We would love to get your feedback on the AI Services! Let us know what your thoughts in the comments!&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="lia-align-justify"&gt;&lt;SPAN&gt;What you have learned:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Document Information Extraction Premium is a genAI based tool that helps you to extract information from documents.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;You learned how to use the UI as well as the Python SDK!&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Data Attribute Recommendation can be applied to different machine learning problems!&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;You have learned how to upload a dataset and train and deploy a regression model!&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;We used Postman to implement the end-to-end machine learning workflow!&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;Additional Information&lt;/H3&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-sap-ai-services/m-p/13688151/emcs_t/S2h8ZW1haWx8a3Vkb3N8TFZYQ0Q4SkZaRlFRWld8MTM2ODgxNTF8S1VET1N8aEs#M2027861" target="_self"&gt;&lt;SPAN&gt;Week 1 challenge&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-sap-ai-services-week-2/td-p/13694818" target="_self"&gt;&lt;SPAN&gt;Week 2 challenge&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-sap-ai-services-week-3/td-p/13701838" target="_self"&gt;&lt;SPAN&gt;Week 3 challenge&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-ai-services-week-4/td-p/13709055" target="_self"&gt;Week 4 challenge&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We have used the AI API Postman collection to train and deploy our model. You can do the same using the &lt;A href="https://pypi.org/project/ai-api-client-sdk/" target="_self"&gt;AI API Python SDK&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also connect your DAR instance to SAP AI Launchpad to do the training and serving.&lt;/P&gt;&lt;P&gt;For the inference you can either do a standard REST Call or use the &lt;A href="https://pypi.org/project/data-attribute-recommendation-sdk/" target="_self"&gt;DAR SDK&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 09:28:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13715701#M2028278</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-29T09:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13716285#M2028287</link>
      <description>&lt;P&gt;&lt;SPAN&gt;My submission for week 5 ! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for all the challenges. For Data Attribute Recommendation, I think I'll need more time to understand the concept and what each API request is doing. I appreciate this opportunity to know this service.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MioYasutake_0-1717013491792.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/117234i033F5FC92EBFC0FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="MioYasutake_0-1717013491792.png" alt="MioYasutake_0-1717013491792.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 20:15:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13716285#M2028287</guid>
      <dc:creator>MioYasutake</dc:creator>
      <dc:date>2024-05-29T20:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13716300#M2028288</link>
      <description>&lt;P&gt;Here's my Submission. Thank you&amp;nbsp;Nora for this challenge around the AI Service&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-05-29 22_35_52-Window.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/117239i63507A98BEB36F26/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2024-05-29 22_35_52-Window.png" alt="2024-05-29 22_35_52-Window.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 20:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13716300#M2028288</guid>
      <dc:creator>M-K</dc:creator>
      <dc:date>2024-05-29T20:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13717491#M2028299</link>
      <description>&lt;P&gt;Here is my Week5 Submission. Its new learning on SAP AI Services. Hope to understand in detail on DAR&amp;gt;&lt;/P&gt;&lt;P&gt;Hope to see more challenges on SAP AI&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Week5.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/117871i1E92F270DC051E21/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Week5.png" alt="Week5.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 16:03:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13717491#M2028299</guid>
      <dc:creator>Sai_Nithesh_G</dc:creator>
      <dc:date>2024-05-30T16:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13717601#M2028301</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my submission for this week.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAP_GEN_AI_DAR_Deployment.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/117908iF7D46B3435AD5DC4/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAP_GEN_AI_DAR_Deployment.png" alt="SAP_GEN_AI_DAR_Deployment.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 19:03:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13717601#M2028301</guid>
      <dc:creator>moh_ali_square</dc:creator>
      <dc:date>2024-05-30T19:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13717689#M2028304</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/7343"&gt;@noravonthenen&lt;/a&gt;, for this awesome learning. I also need to practice a couple of more times with other AI-inference Ops scenarios.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sabarna17_0-1717103005997.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/117960i34DB5A8BC0CEC162/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sabarna17_0-1717103005997.png" alt="sabarna17_0-1717103005997.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 21:06:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13717689#M2028304</guid>
      <dc:creator>sabarna17</dc:creator>
      <dc:date>2024-05-30T21:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718015#M2028312</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="geek_0-1717146567753.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/118079i7E0772ACE533FB36/image-size/medium?v=v2&amp;amp;px=400" role="button" title="geek_0-1717146567753.png" alt="geek_0-1717146567753.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 09:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718015#M2028312</guid>
      <dc:creator>geek61</dc:creator>
      <dc:date>2024-05-31T09:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718252#M2028318</link>
      <description>&lt;P&gt;Here's my submission for week 5.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="martaseq_0-1717164943341.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/118172i13CBFF94896BA7D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="martaseq_0-1717164943341.png" alt="martaseq_0-1717164943341.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The part of training a model using the API seemed both very complex and very interesting. Made me eager to read a bit more on this subject to try to understand every piece of the puzzle!&lt;/P&gt;&lt;P&gt;Thank you for this challenge, it was super fun!&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 14:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718252#M2028318</guid>
      <dc:creator>martaseq</dc:creator>
      <dc:date>2024-05-31T14:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718321#M2028324</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;I can't get the deploymentUrl:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ruthiel_0-1717169315215.png" style="width: 763px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/118189i8E7866BE52CB5436/image-dimensions/763x269?v=v2" width="763" height="269" role="button" title="Ruthiel_0-1717169315215.png" alt="Ruthiel_0-1717169315215.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I think I need it to make the query. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 15:53:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718321#M2028324</guid>
      <dc:creator>Ruthiel</dc:creator>
      <dc:date>2024-05-31T15:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718323#M2028325</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/120859"&gt;@Ruthiel&lt;/a&gt;&amp;nbsp;Think you need to wait until the Status is RUNNING.&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 15:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718323#M2028325</guid>
      <dc:creator>geek61</dc:creator>
      <dc:date>2024-05-31T15:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718377#M2028326</link>
      <description>&lt;P&gt;My Week 5 results:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2024-05-31_19-40-10.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/118205i1B0AC3CB144713F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-05-31_19-40-10.png" alt="2024-05-31_19-40-10.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 17:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13718377#M2028326</guid>
      <dc:creator>Vitaliy-R</dc:creator>
      <dc:date>2024-05-31T17:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720143#M2028339</link>
      <description>&lt;P&gt;Here is my Week 5 Submission!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CameronWilson_0-1717440391532.png" style="width: 614px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/118872i630D94EED2E19797/image-dimensions/614x330?v=v2" width="614" height="330" role="button" title="CameronWilson_0-1717440391532.png" alt="CameronWilson_0-1717440391532.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 18:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720143#M2028339</guid>
      <dc:creator>CameronWilson</dc:creator>
      <dc:date>2024-06-03T18:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720575#M2028342</link>
      <description>&lt;P&gt;Week 5 completed!&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_1.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/119107iE9175C11707131B8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_1.png" alt="Screenshot_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 08:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720575#M2028342</guid>
      <dc:creator>Jordi_C</dc:creator>
      <dc:date>2024-06-04T08:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 5</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720701#M2028343</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/7343"&gt;@noravonthenen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Good Day&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is my 5th week submission. Thank you so much for introducing DAR to us.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hira_0-1717495061590.png" style="width: 723px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/119165i18F75D7585077698/image-dimensions/723x394?v=v2" width="723" height="394" role="button" title="Hira_0-1717495061590.png" alt="Hira_0-1717495061590.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2024 09:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-5/m-p/13720701#M2028343</guid>
      <dc:creator>Hira</dc:creator>
      <dc:date>2024-06-04T09:58:45Z</dc:date>
    </item>
  </channel>
</rss>

