## Gioi thieu
Trong bai viet nay, chung ta se xay dung mot chatbot don gian nhung manh me su dung Google Gemini API.
## Buoc 1: Cai dat
```bash pip install google-generativeai ```
## Buoc 2: Code
```python import google.generativeai as genai genai.configure(api_key="YOUR_KEY") model = genai.GenerativeModel("gemini-pro") response = model.generate_content("Hello") print(response.text) ```
## Ket luan
Chi vai dong code la co chatbot!
Top comments (0)