TypeChat
microsoft.github.io
TypeChat
1–10 of 174 posts
Re: TypeChat
#2Re: TypeChat
#3Structured requests and responses are 100% the next evolution of LLMs. People are already getting tired of chatbots. Being able to plug in any backend without worrying about text parsing and prompts will be amazing.
Re: TypeChat
#4 type Item = {
name: string;
...
size?: string;
I'm not really following how this would avoid `name: "grande latte"`?But then the example response:
"size": 16
> This is pretty great!Is it? It's not even returning the type being asked for?
I'm guessing this is more of a typo in the example, because otherwise this seems cool.
Re: TypeChat
#5> It's unfortunately easy to get a response that includes { "name": "grande latte" } type Item = { name: string; ... size?: string; I'm not really following how this would avoid `name: "grande latte"`? But then the example response: "size": 16 > This is pretty great! Is it? It's not even returning the type being asked for? I'm guessing this is more of a typo in the example, because otherwise this seems cool.
There would be no way for a system to map "grande" to 16 based on the code provided, and 16 does not seem to be used anywhere else.
Re: TypeChat
#6Re: TypeChat
#7All this is it's just talking to a AI model sitting on someone else's server.
[0] https://github.com/microsoft/TypeChat/blob/main/src/model.ts...
Re: TypeChat
#8Re: TypeChat
#9> It's unfortunately easy to get a response that includes { "name": "grande latte" } type Item = { name: string; ... size?: string; I'm not really following how this would avoid `name: "grande latte"`? But then the example response: "size": 16 > This is pretty great! Is it? It's not even returning the type being asked for? I'm guessing this is more of a typo in the example, because otherwise this seems cool.