src/retrieval_service/datastore/datastore.py [85:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            col_names = [
                "id",
                "name",
                "description",
                "location",
                "terminal",
                "category",
                "hour",
                "sunday_start_hour",
                "sunday_end_hour",
                "monday_start_hour",
                "monday_end_hour",
                "tuesday_start_hour",
                "tuesday_end_hour",
                "wednesday_start_hour",
                "wednesday_end_hour",
                "thursday_start_hour",
                "thursday_end_hour",
                "friday_start_hour",
                "friday_end_hour",
                "saturday_start_hour",
                "saturday_end_hour",
                "content",
                "embedding",
            ]
            writer = csv.DictWriter(f, col_names, delimiter=",")
            writer.writeheader()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/retrieval_service/run_generate_embeddings.py [39:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        col_names = [
            "id",
            "name",
            "description",
            "location",
            "terminal",
            "category",
            "hour",
            "sunday_start_hour",
            "sunday_end_hour",
            "monday_start_hour",
            "monday_end_hour",
            "tuesday_start_hour",
            "tuesday_end_hour",
            "wednesday_start_hour",
            "wednesday_end_hour",
            "thursday_start_hour",
            "thursday_end_hour",
            "friday_start_hour",
            "friday_end_hour",
            "saturday_start_hour",
            "saturday_end_hour",
            "content",
            "embedding",
        ]
        writer = csv.DictWriter(f, col_names, delimiter=",")
        writer.writeheader()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



