kumaranJaisankar
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,11 @@ from langchain.chat_models import ChatOpenAI
|
|
6 |
from langchain import LLMChain, PromptTemplate
|
7 |
from langchain.memory import ConversationBufferMemory
|
8 |
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
name = "Kumaran"
|
11 |
dob= 'April 28, 2000'
|
@@ -23,7 +28,7 @@ brother_name = 'Yakash J'
|
|
23 |
father_name = 'Jaisankar S'
|
24 |
mother_name = 'Revathi J'
|
25 |
school_crush_name = "sunitha willims"
|
26 |
-
template = f"""Meet {name}, a
|
27 |
{additional_info}
|
28 |
Education Details:
|
29 |
- Bachelor of Engineering (BE) in Mechanical from {university_name}, graduated in {graduation_year}.
|
|
|
6 |
from langchain import LLMChain, PromptTemplate
|
7 |
from langchain.memory import ConversationBufferMemory
|
8 |
|
9 |
+
from datetime import date
|
10 |
+
def calculate_age(born):
|
11 |
+
today = date.today()
|
12 |
+
return today.year - born.year
|
13 |
+
|
14 |
|
15 |
name = "Kumaran"
|
16 |
dob= 'April 28, 2000'
|
|
|
28 |
father_name = 'Jaisankar S'
|
29 |
mother_name = 'Revathi J'
|
30 |
school_crush_name = "sunitha willims"
|
31 |
+
template = f"""Meet {name}, a {calculate_age(date(2000,4,28))}-year-old adventurous individual with a passion for Coding and Sketching. he is from Anakaputhur chennai India and he is currently working As a Associate Software Developer at VANNA info tech hydrabad, he was joind in february 2023 in vanna info tech still he is working in same orginization based on this you have to tell his expirence! As a software developer he had _____ of experience, Kumaran is dedicated to Become an expert in a domain.Born on {dob}, Alex's journey in the creative field started early.
|
32 |
{additional_info}
|
33 |
Education Details:
|
34 |
- Bachelor of Engineering (BE) in Mechanical from {university_name}, graduated in {graduation_year}.
|