How to use It In english
‘deepseek-chat’,
‘messages’ => [
[
‘role’ => ‘system’,
‘content’ => “You are an English tutor helping a student learn the correct use of ‘it’. ” .
“Provide clear, simple explanations and corrections. ” .
“For practice exercises, give specific feedback on mistakes. ” .
“Keep responses under 3 sentences unless more explanation is needed.”
],
[
‘role’ => ‘user’,
‘content’ => $user_message
]
],
‘temperature’ => 0.7
]));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
‘Content-Type: application/json’,
‘Authorization: Bearer ‘ . $deepseek_api_key
]);
$response = curl_exec($ch);
if (curl_errno($ch)) {
$ai_response = “Error connecting to AI service. Please try again.”;
} else {
$response_data = json_decode($response, true);
$ai_response = $response_data[‘choices’][0][‘message’][‘content’] ?? “Sorry, I didn’t understand that. Could you rephrase?”;
}
curl_close($ch);
}
?>
Mastering the Word “It”
An interactive English lesson with AI tutor
What is “It”?
“It” is one of the most useful words in English! We use it for:
- Things and animals (“Look at that bird! It is beautiful.”)
- Weather and temperature (“It is raining today.”)
- Time and dates (“It is 3 o’clock.”)
- General situations (“It is important to study.”)
Practice with Examples
Objects: “This is my phone. It has a great camera.”
Example: Point to an object near you and say: “It is [adjective].”
“It is comfortable.” (pointing to a chair)
Weather: “It was sunny yesterday, but now it is cloudy.”
Complete: “It is ______ today.”
“It is windy today.”
Interactive Practice
Complete these sentences with “it”:
1. My computer is old. ___ is very slow.
2. ___ is 9:30 AM – time for our English lesson!
3. Look at that cat! ___ has green eyes.
Ask the AI English Tutor
Type any question or sentence about using “it” and get instant feedback:
Challenge Time!
Try writing 3 sentences using “it” for different purposes:
- About an object: _______________________________
- About the weather: _______________________________
- About time: _______________________________
Responses