File size: 252 Bytes
2edd2c5
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
class CitingSources:
    def __init__(self, sources):
        self.sources = sources

    @staticmethod
    def from_pydantic_models(sources, output_type):
        # Placeholder function to mimic pydantic behavior
        return CitingSources(sources)