Myles Scolnick

Results 578 comments of Myles Scolnick

hey @ari62, correct me if im wrong, but you are looking to for an MCP over `stdio`? are you just looking for docs or are you looking for an MCP...

@alngrw - likely because `rtc_v2`. can you turn this off and let us know if the issue persists?

@ArianJavdan, it sounds like this endpoint is not compatible with the OpenAI API. This is likely coming from sending tools information to their endpoint. Can you reach out to that...

@ArianJavdan you can see that the deserialization expect a string for the message content, but a truly open-ai compatible endpoint would support `string | ChatMessagePart[]` https://platform.openai.com/docs/api-reference/chat/create#chat_create-messages

hi @robd518 - we don't use poetry on the team, but would appreciate help fixing this if you are up for it. otherwise, we can look into this ourselves when...

hey @Yasin197 these ideas sound good to implement. would you like to add the feature yourself?

@Yasin197, you can do this yourself currently today, here is some pseudo-code: ```python # cell 1 selection = mo.ui.multi_select(options) # cell 2 mo.md(f""" {str(selection.value)} {selection} """) ```

@Yasin197 - i think it could. most definitely with a community contribution.

Thanks for filing - we can look into this soon hopefully. We currently have some other stability tasks we are working through

The first one is now fixed in #7273 for this case: ```python @app.cell def _(): class EmbeddedTypeAlias: MyEmbeddedTypeAlias: TypeAlias = int def __init__(self, value: MyEmbeddedTypeAlias): self.value = value return #...