diff --git a/captchatools-go/README.md b/captchatools-go/README.md
index c1cdac3..2f891af 100644
--- a/captchatools-go/README.md
+++ b/captchatools-go/README.md
@@ -75,7 +75,7 @@ func main() {
### NewHarvester() Parameters:
| Parameter | Required | Type | Description|
| :-------------: |:-------------:| :-----:| :-----:|
-| solving_site | true | int| The captcha solving site that will be used. Refer to [the site IDs](https://github.com/Matthew17-21/Captcha-Tools/tree/main/captchatools-go#site-specific-support). Alternatively, you can use shortcuts such as `captchatools.AnticaptchaSite` |
+| solving_site | true | int (iota)| The captcha solving site that will be used. Refer to [the site IDs](https://github.com/Matthew17-21/Captcha-Tools/tree/main/captchatools-go#site-specific-support). Alternatively, you can use shortcuts such as `captchatools.AnticaptchaSite` |
| Config| true | captchatools.Config | Configurations for the captchas you are solving. |
### Config struct fields:
| Field | Required | Type | Description|
@@ -262,11 +262,11 @@ func addtional_data() {
- **[Anticaptcha](https://www.anti-captcha.com/)**
### Site-Specific Support:
-| Site | Captcha Types Supported | Task Types Supported|
-| :-------------: |:-------------:| :-----:|
-| Capmonster | Image captchas,
Recaptcha V2,
Recaptcha V3,
HCaptcha | ImageToTextTask,
NoCaptchaTask,
NoCaptchaTaskProxyless,
RecaptchaV3TaskProxyless,
HCaptchaTaskProxyless |
-| Anticaptcha | Image captchas,
Recaptcha V2,
Recaptcha V3,
HCaptcha | ImageToTextTask,
RecaptchaV2Task
RecaptchaV2TaskProxyless,
RecaptchaV3TaskProxyless,
HCaptchaTaskProxyless |
-| 2Captcha | Image captchas,
Recaptcha V2,
Recaptcha V3,
HCaptcha | - |
+| Site | Site ID |Captcha Types Supported | Task Types Supported|
+| :-------------: |:-------------:| :-----:| :-----:|
+| Capmonster | captchatools.CapmonsterSite| Image captchas,
Recaptcha V2,
Recaptcha V3,
HCaptcha | ImageToTextTask,
NoCaptchaTask,
NoCaptchaTaskProxyless,
RecaptchaV3TaskProxyless,
HCaptchaTaskProxyless |
+| Anticaptcha | captchatools.AnticaptchaSite| Image captchas,
Recaptcha V2,
Recaptcha V3,
HCaptcha | ImageToTextTask,
RecaptchaV2Task
RecaptchaV2TaskProxyless,
RecaptchaV3TaskProxyless,
HCaptchaTaskProxyless |
+| 2Captcha | captchatools.TwoCaptchaSite| Image captchas,
Recaptcha V2,
Recaptcha V3,
HCaptcha | - |
# Captchas Types
| Captcha Type | Represents|