You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, an excellent tool for extraction. Is there a way for output to have a start and end index in the sentence? It would be a great improvement to highlight the inside sentence entity.
@eyurtsev are you set on using an LLM call to get the start and end index? Instead, you may be able to do a string search, assuming the entity extracted exists verbatim.
@smwitkowski String search could be useful as well -- it doesn't have enough flexibility in comparison to an LLM, but it's fast and basically free. If you want to work on this feature let me know!
Hi, an excellent tool for extraction. Is there a way for output to have a start and end index in the sentence? It would be a great improvement to highlight the inside sentence entity.
For example:
{'personal_info': [{'first_name': {text: string, start: integer, end: integer}, 'last_name': {text: 'Last name', start: int, end: int}''}]}
Thanks
The text was updated successfully, but these errors were encountered: