| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
Report abusefrom dataclasses import dataclass, field
@dataclass
class Me:
name: str = "Grigorii Churakov"
role: str = "AI Engineer"
education: dict = field(default_factory=lambda: {
"BS": "HSE, Software Engineering (2021β2025)",
"MS": "ITMO, Applied Mathematics & Informatics (2025β2027)",
})
experience: dict = field(default_factory=lambda: {
"current": {"Banco Plata": "AI Engineer"},
"previous": {
"Xsolla": [
"AI Engineer β Super Agent Team",
"AI Engineer β Internal Efficiency",
"AI Intern β Rapid Prototyping",
]
},
})
languages: dict = field(default_factory=lambda: {
"speak": ["π¬π§ English", "π·πΊ Russian"],
"code": ["π Python", "π Go"],
})
focus: list = field(default_factory=lambda: [
"π§ LLM Systems",
"π Agent Architectures",
"π Evaluation & Observability",
"π Distributed Systems",
])
interests: list = field(default_factory=lambda: [
"π NLP",
"π Science Fiction",
"βοΈ Developer Tooling",
])
def __str__(self) -> str:
return f"{self.name} β builder."
if __name__ == "__main__":
print(Me())| Back | FazBrowse Home | New Git URL |