python/src/tablestore_for_agent_memory/util/tablestore_helper.py [171:178]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            key = col[0]
            val = col[1]
            if key == text_field:
                text_content = val
                continue
            if key == embedding_field:
                vector_content = json.loads(val)
                continue
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/src/tablestore_for_agent_memory/util/tablestore_helper.py [629:636]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                key = col[0]
                val = col[1]
                if key == text_field:
                    text_content = val
                    continue
                if key == embedding_field:
                    vector_content = json.loads(val)
                    continue
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



