Embedding and searching employee profiles

I want to develop an advanced employee searching tool We have a database that holds a bunch of “biographical” data (resumes, skills, licenses, awards, education). What is the best method for searching this? I’ve tried embedding the data for each employee all joined as one block, but the results are inaccurate.

Welcome to the OpenAI community @daryl_vogan

The data can be stored on a DB. You can then pass the DB schema along with the user message to generate SQL queries using the model. The results can then be passed back to the user in a predefined format or sent back to the model to generate a reply in natural language.

1 Like