
#  None

```
Exercise ID 1575284
```

##  Assignment 

##  Instructions 

- Extract the `"total_tokens"` value from the response.



```
# Extract the total_tokens from the response
print(____)
```

##  Hints 

- The `"total_tokens"` key:value pair is nested inside the `"usage"` dictionary.



##  Solution 

```
# Extract the total_tokens from the response
print(response["usage"]["total_tokens"])
```


