from 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())Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Β | Β | |||