Skip to content

Commit dfda4eb

Browse files
authored
Merge branch 'main' into web-search-exercise
2 parents cb38779 + cdcf8ef commit dfda4eb

16 files changed

Lines changed: 2260 additions & 77 deletions

File tree

exercises/Python/01-setup-dev-space.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
## Open SAP Business Application Studio
88

9-
👉 Go back to the [BTP cockpit](https://emea.cockpit.btp.cloud.sap/cockpit#/globalaccount/275320f9-4c26-4622-8728-b6f5196075f5/subaccount/a5a420d8-58c6-4820-ab11-90c7145da589/subaccountoverview).
9+
👉 Go back to the [BTP cockpit](https://emea.cockpit.btp.cloud.sap/cockpit/?idp=a7rg4vxjp.accounts.ondemand.com#/globalaccount/275320f9-4c26-4622-8728-b6f5196075f5/subaccount/a5a420d8-58c6-4820-ab11-90c7145da589?layout=TwoColumnsMidExpanded).
1010

1111
👉 Navigate to `Instances and Subscriptions` and open `SAP Business Application Studio`.
1212

@@ -56,7 +56,7 @@ https://github.com/SAP-samples/codejam-code-based-agents.git
5656

5757
```Python
5858
LITELLM_PROVIDER="sap"
59-
AICORE_AUTH_URL="https://#####.authentication.eu10.hana.ondemand.com/oauth/token"
59+
AICORE_AUTH_URL="https://#####.authentication.eu10.hana.ondemand.com/" + "oauth/token"
6060
AICORE_CLIENT_ID="sb-3c636fc2-d352-496a-851d-7a7d6005dcd4!b505946|aicore!b540"
6161
AICORE_CLIENT_SECRET="#####"
6262
AICORE_RESOURCE_GROUP="ai-agents-codejam"
@@ -65,7 +65,7 @@ RPT1_DEPLOYMENT_URL="https://api.ai.prod.eu-central-1.aws.ml.hana.ondemand.com/v
6565
```
6666
👉 You will need to UPDATE these variables but keep the given structure. The correct information you can find in the SAP AI Core service-key in your BTP cockpit.
6767

68-
👉 Go back to the Subaccount in the [BTP cockpit](https://emea.cockpit.btp.cloud.sap/cockpit#/globalaccount/275320f9-4c26-4622-8728-b6f5196075f5/subaccount/a5a420d8-58c6-4820-ab11-90c7145da589/subaccountoverview).
68+
👉 Go back to the Subaccount in the [BTP cockpit](https://emea.cockpit.btp.cloud.sap/cockpit/?idp=a7rg4vxjp.accounts.ondemand.com#/globalaccount/275320f9-4c26-4622-8728-b6f5196075f5/subaccount/a5a420d8-58c6-4820-ab11-90c7145da589?layout=TwoColumnsMidExpanded).
6969

7070
👉 Navigate to `Instances and Subscriptions` and open the SAP AI Core instance's service binding.
7171

exercises/Python/02-build-a-basic-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ if __name__ == "__main__":
111111

112112
👉 Execute the crew with the basic agent:
113113

114-
> ☝️ Make sure you're in the repository root directory (e.g., `codejam-code-based-agents-1`) when running this command. If you're already in the `starter-project` folder, use the appropriate command for your OS.
114+
> ☝️ Make sure you're in the repository root directory (e.g., `codejam-code-based-agents`) when running this command. If you're already in the `starter-project` folder, use the appropriate command for your OS.
115115
116116
**From repository root:**
117117

exercises/Python/03-add-your-first-tool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,9 +526,9 @@ if __name__ == "__main__":
526526
527527
👉 Go to **Workspaces**.
528528

529-
👉 Select your workspace (like `codejam-aicore-connection`) and your resource group `ai-agents-codejam`.
529+
👉 Select your workspace (like `codejam`) and your resource group `ai-agents-codejam`.
530530

531-
👉 Make sure it is set as a context. The proper name of the context, like `codejam-aicore-connection (ai-agents-codejam)` should show up at the top next to SAP AI Launchpad.
531+
👉 Make sure it is set as a context. The proper name of the context, like `codejam (ai-agents-codejam)` should show up at the top next to SAP AI Launchpad.
532532

533533
👉 Navigate to `ML Operations > Deployments > sap-rpt-1-large_autogenerated`
534534

project/JavaScript/solution/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Dependencies
22
node_modules/
3-
package-lock.json
43
yarn.lock
54
pnpm-lock.yaml
65

0 commit comments

Comments
 (0)