Open yl923 opened 1 week ago
check you zipcode value - it more than 10 digits.
it clear in your error
String should have at most 10 characters [type=string_too_long, input_value='[Your zip code]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/string_too_long
I'm getting the same set of errors even tho my zip_code length is just 6 digits and email contains @
zip_code
is too constrained and/or location specific, there are countries that have 4 numbers in zip code (some countries don't have zip codes for some addresses).
personal_information.zip_code
String should have at least 5 characters [type=string_too_short, input_value='0000', input_type=str]
@egor-ryashin @parohanoid @yl923 Hi, do you want to work on this?
For better communication with other open source developers I suggest you join our discord group: https://discord.gg/mMZcMTH9K6
Validated the YAML file syntax with https://www.yamllint.com/
Runtime error: Error running the bot: Unexpected error while parsing YAML: 7 validation errors for Resume personal_information.zip_code String should have at most 10 characters [type=string_too_long, input_value='[Your zip code]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/string_too_long personal_information.email value is not a valid email address: An email address must have an @-sign. [type=value_error, input_value='[Your Email Address]', input_type=str] personal_information.github Input should be a valid URL, relative URL without a base [type=url_parsing, input_value='[Your GitHub Profile URL]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/url_parsing personal_information.linkedin Input should be a valid URL, relative URL without a base [type=url_parsing, input_value='[Your LinkedIn Profile URL]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/url_parsing education_details.0.year_of_completion Input should be a valid integer, unable to parse string as an integer [type=int_parsing, input_value='[Year of Completion]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/int_parsing projects.0.link Input should be a valid URL, relative URL without a base [type=url_parsing, input_value='[Project Link]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/url_parsing projects.1.link Input should be a valid URL, relative URL without a base [type=url_parsing, input_value='[Project Link]', input_type=str] For further information visit https://errors.pydantic.dev/2.9/v/url_parsing