๐ญ Iโm currently working on my internship.
๐ฏ Iโm looking to collaborate on AI/ML Projects.
๐ฑ Iโm currently learning AI Agents & Generative AI.
๐ฌ Ask me about Generative AI & Machine Learning
class Chitresh():
def __init__(self):
self.name = "Chitresh Gyanani";
self.username = "Chitresh-code";
self.location = "New Delhi, India";
self.twitter = "@chitreshgyanani";
self.web = "https://www.chitresh.in/";
def __str__(self):
return self.name
if __name__ == '__main__':
me = Chitresh()