Spaces:
Sleeping
Sleeping
File size: 175 Bytes
075a2b6 | 1 2 3 4 5 6 7 | # backend/app/models/knowledge.py
from pydantic import BaseModel
class KnowledgeTile(BaseModel):
title: str
content: str
# 必要に応じて他の属性を追加 |