├── .env.demo ├── .gitignore ├── README.md ├── app.py ├── examples ├── __init__.py ├── chat_basic.py ├── data │ ├── fashion_products.csv │ └── mapping_result_fashion.json └── semantic_mapper_columns_basic.py ├── requirements.txt └── src ├── __init__.py └── graphindex ├── __init__.py ├── chat.py ├── common ├── __init__.py ├── config.py ├── enumerations.py ├── prompts.py └── utils.py ├── mapping.py └── ontology.py /.env.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/.env.demo -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/app.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/chat_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/examples/chat_basic.py -------------------------------------------------------------------------------- /examples/data/fashion_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/examples/data/fashion_products.csv -------------------------------------------------------------------------------- /examples/data/mapping_result_fashion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/examples/data/mapping_result_fashion.json -------------------------------------------------------------------------------- /examples/semantic_mapper_columns_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/examples/semantic_mapper_columns_basic.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graphindex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graphindex/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/chat.py -------------------------------------------------------------------------------- /src/graphindex/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/graphindex/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/common/config.py -------------------------------------------------------------------------------- /src/graphindex/common/enumerations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/common/enumerations.py -------------------------------------------------------------------------------- /src/graphindex/common/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/common/prompts.py -------------------------------------------------------------------------------- /src/graphindex/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/common/utils.py -------------------------------------------------------------------------------- /src/graphindex/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/mapping.py -------------------------------------------------------------------------------- /src/graphindex/ontology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphIndex-org/semantic-mapper/HEAD/src/graphindex/ontology.py --------------------------------------------------------------------------------