Conway support?

Hi, I’m using the python ogmios library to retrieve and analyze transactions, but it seems as soon as I reach the conway era, I’m starting to get tons of pydantic errors in the console, such as the following one. So it seems that the conway era is not supported by the library.

Is Conway support being worked on? If not, do you know if I can still use the library in an "untyped" way? (I’m not super familiar with pydantic)

pydantic warning:  __init__ failed to validate:
 {
    "type": "praos",
    "era": "conway",
    "id": "0622268406bdffde46c868b7c0e7dcfffac034941de3d2bc16b00870fdd39104",
    "ancestor": "77fea553c95b777da0e81f413631be4ab74d43f7ac20693e34b2a8472f77305f",
    "height": 10782103,
    "slot": 133677964,
    "size": {
        "bytes": 21317
    },
    "protocol": {
        "version": {
            "major": 9,
            "minor": 1
        }
    },
    "issuer": {
        "verificationKey": "24914dd0cbc33ce4cd63c4ba56a9fa5aabd1431e3607f7116406c3f8a03caa8b",
        "vrfVerificationKey": "9fc1213f2c2a75666c48c49c631cde14c0e43588e837bbe3fd891b831bbcd13b",
        "operationalCertificate": {
            "count": 0,
            "sigma": "9c62bddd3273dabd0a652d8313825a1c55d195af1636f445abb520b882219131550ae053cf2745abb92b
            "kes": {
                "period": 987,
                "verificationKey": "0e0c8323c57eb6b25f60383880ea7551596b869f17fd921dd830de88259f876b"
            }
        },
        "leaderValue": {
            "output": "72f425cde6ee27ce93539f1ac89df75ee7c0e52c16ad7d41e11fa6c2c9e206038c29a2977029c725532da2d0f90d4c9ebb0d6298318ba3b3e55cbb816bbb5578",
            "proof": "da54a7034cb66f08582aec14302dcd0f92a0608d773140692a504141d2de52a1cf0dfe6c14d3257d683cea4f060ef9ea5fd3ba3d0ca6122b14da19b1f210135e978ab6726bec9ef03564d8c017c89f06"
        }
    }
}

This is the original exception:
[
  {
    "loc": [
      "era"
    ],
    "msg": "value is not a valid enumeration member; permitted: 'shelley', 'allegra', 'mary', 'alonzo', 'babbage'",
    "type": "type_error.enum",
    "ctx": {
      "enum_values": [
        "shelley",
        "allegra",
        "mary",
        "alonzo",
        "babbage"
      ]
    }
  }
]