Skip to content

Commit ac46641

Browse files
Incorporating user feedback
1 parent 401b6b8 commit ac46641

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

tutorials/ai-core-generative-ai/ai-core-generative-ai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ You can also include optional parameters such as:
449449
To install the generative-ai-hub-sdk package in your system, open your terminal or command prompt and run the following command.
450450

451451
```TEXT
452-
pip3 install generative-ai-hub-sdk
452+
pip3 install generative-ai-hub-sdk[all]
453453
```
454454

455455
Now you have generative-ai-hub-sdk installed in your system.

tutorials/ai-core-helloworld/ai-core-helloworld.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,10 +504,11 @@ Use the ID of configuration to create your execution.
504504

505505
```PYTHON
506506
# Create execution using configuration
507-
ai_core_client.execution.create(
507+
response = ai_core_client.execution.create(
508508
configuration_id = '<YOUR_CONFIGURATION_ID>', # Change this value.
509509
resource_group = 'default'
510510
)
511+
response.__dict__
511512
```
512513

513514
<!-- border -->![image](img2/aics/conf-exec.png)

0 commit comments

Comments
 (0)