Facundo Goiriz

Results 4 comments of Facundo Goiriz

Good that you added azure stt from @szkiu ! Now what are we waiting to merge this? Any way we can help?

Benefit from merging the feature now to main > Benefit from waiting 1 more month to add new features

the problem seems to be that ``` class RetrievalTool(Tool[T]): type: Literal["retrieval"] = "retrieval" ``` and ``` class CodeInterpreterTool(Tool[T]): type: Literal["code_interpreter"] = "code_interpreter" ``` inherit from Tool ``` class Tool(MarvinType, Generic[T]):...

I would imagine a better solution would be to modify the Tool model so it does not include the "function" field and name it BaseTool, make RetrievalTool and CodeInterpreterTool inherit...