Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	File size: 1,091 Bytes
			
			| 97fdba5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | import json
import os
from pydantic import BaseModel
from typing import Literal
class ChunkConfig(BaseModel):
	input_dataset: str
	input_splits: list[str]
	input_text_col: str
	output_dataset: str
	strategy: Literal["spacy", "sequence", "constant"]
	split_seq: str | list[str]
	chunk_len: int
	private: bool
class EmbedConfig(BaseModel):
	input_dataset: str
	input_splits: list[str]
	input_text_col: str
	output_dataset: str
	private: bool
	semaphore_bound: int
class WebhookPayloadEvent(BaseModel):
	action: Literal["create", "update", "delete"]
	scope: str
class WebhookPayloadRepo(BaseModel):
	type: Literal["dataset", "model", "space"]
	name: str
	id: str
	private: bool
	headSha: str
class WebhookPayload(BaseModel):
	event: WebhookPayloadEvent
	repo: WebhookPayloadRepo
with open(os.path.join(os.getcwd(), "chunk_config.json")) as c:
	data = json.load(c)
	chunk_config = ChunkConfig.model_validate_json(json.dumps(data))
with open(os.path.join(os.getcwd(), "embed_config.json")) as c:
	data = json.load(c)
	embed_config = EmbedConfig.model_validate_json(json.dumps(data))
 | 
