Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
agents-course/Final_Assignment_Template
notsakeeb
/
Final_Assignment_Template
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2b1c0da
Final_Assignment_Template
/
Utils
/
final_answer.py
notsakeeb
Upload 3 files
e552ac2
verified
3 months ago
raw
Copy download link
history
blame
Safe
212 Bytes
def
extract_final_answer
(
text
):
if
"FINAL ANSWER:"
in
text:
start_index = text.find(
"FINAL ANSWER:"
) +
len
(
"FINAL ANSWER:"
)
return
text[start_index:].strip()
else
:
return
None