mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-04 12:52:36 +02:00
* Starting to spawn base package * More package hacking * Bedrock and VertexAI * Parquet split * Updated templates * Utils
8 lines
161 B
Python
8 lines
161 B
Python
|
|
class Schema:
|
|
def __init__(self, name, description, fields):
|
|
self.name = name
|
|
self.description = description
|
|
self.fields = fields
|
|
|
|
|