microsoft / teams-ai

SDK focused on building AI based applications and extensions for Microsoft Teams and other Bot Framework channels
MIT License
349 stars 142 forks source link

[Bug]: state.temp.input_files is actually List[List[InputFile]] vs List[InputFile] #1770

Open heyitsaamir opened 6 days ago

heyitsaamir commented 6 days ago

Language

Python

Version

latest

Description

input_files is supposed to be of type List[InputFile] but it's actually List[List[InputFile]]. It's because of the logic here: https://github.com/microsoft/teams-ai/blob/c5809e36693d6c948090924df4eb6393e7a2bed0/python/packages/ai/teams/app.py#L752

Reproduction Steps

This is a dev-ex typing issue, not a bug in execution