Spaces:
Running
Running
Niki Zhang
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -1134,7 +1134,7 @@ def export_chat_log(chat_state, paragraph, liked, disliked):
|
|
1134 |
return None
|
1135 |
|
1136 |
async def get_artistinfo(artist_name,api_key,state,language,autoplay,length):
|
1137 |
-
prompt=f"Provide a concise summary of about {length} words on the painter {artist_name}, covering his biography, major works, artistic style, significant contributions to the art world, and any major awards or recognitions he has received."
|
1138 |
res=get_gpt_response(api_key,None,prompt)
|
1139 |
state = state + [(None, f"Artist Background:{res}")]
|
1140 |
read_info = re.sub(r'[#[\]!*]','',res)
|
@@ -1150,7 +1150,7 @@ async def get_artistinfo(artist_name,api_key,state,language,autoplay,length):
|
|
1150 |
|
1151 |
|
1152 |
async def get_yearinfo(year,api_key,state,language,autoplay,length):
|
1153 |
-
prompt = f"Provide a concise summary of about {length} words on the art historical period associated with the year {year}, covering its major characteristics, influential artists, notable works, and its significance in the broader context of art history."
|
1154 |
res=get_gpt_response(api_key,None,prompt)
|
1155 |
state = state + [(None, f"History Background: {res}")]
|
1156 |
read_info = re.sub(r'[#[\]!*]','',res)
|
|
|
1134 |
return None
|
1135 |
|
1136 |
async def get_artistinfo(artist_name,api_key,state,language,autoplay,length):
|
1137 |
+
prompt=f"Provide a concise summary of about {length} words in {language} on the painter {artist_name}, covering his biography, major works, artistic style, significant contributions to the art world, and any major awards or recognitions he has received."
|
1138 |
res=get_gpt_response(api_key,None,prompt)
|
1139 |
state = state + [(None, f"Artist Background:{res}")]
|
1140 |
read_info = re.sub(r'[#[\]!*]','',res)
|
|
|
1150 |
|
1151 |
|
1152 |
async def get_yearinfo(year,api_key,state,language,autoplay,length):
|
1153 |
+
prompt = f"Provide a concise summary of about {length} words in {language} on the art historical period associated with the year {year}, covering its major characteristics, influential artists, notable works, and its significance in the broader context of art history."
|
1154 |
res=get_gpt_response(api_key,None,prompt)
|
1155 |
state = state + [(None, f"History Background: {res}")]
|
1156 |
read_info = re.sub(r'[#[\]!*]','',res)
|