Well-known vendor names for custom extensions.
| 35 | |
| 36 | |
| 37 | class OSIVendor(str, Enum): |
| 38 | """Well-known vendor names for custom extensions.""" |
| 39 | |
| 40 | COMMON = "COMMON" |
| 41 | SNOWFLAKE = "SNOWFLAKE" |
| 42 | SALESFORCE = "SALESFORCE" |
| 43 | DBT = "DBT" |
| 44 | DATABRICKS = "DATABRICKS" |
| 45 | GOODDATA = "GOODDATA" |
| 46 | SEMANTIDO = "SEMANTIDO" |
| 47 | |
| 48 | |
| 49 | class OSIAIContextObject(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected