(response)
| 976 | browser.close() |
| 977 | |
| 978 | def account_token(response): |
| 979 | input_token = response.info['usage']['prompt_tokens'] |
| 980 | output_token = response.info['usage']['completion_tokens'] |
| 981 | |
| 982 | return input_token, output_token |
| 983 | |
| 984 | def style_bullet_content(bullet_content_item, color, fill_color): |
| 985 | for i in range(len(bullet_content_item)): |
no outgoing calls
no test coverage detected