Replies: 7 comments 12 replies
-
Hey I’m developing https://jxnl.github.io/instructor/ which looks pretty similar to type chat. It works now but I would love to work together with typechat. |
Beta Was this translation helpful? Give feedback.
-
Definitely interested in collaboration where possible! Right now we've found pretty good results with TypeScript at the very least as the schema language that gets sent over. Starting out with TypeScript gave us an easy opportunity to quickly validate against the types themselves; however, that doesn't mean that the same approach can't be used with other languages regardless of if TypeScript is leveraged as the "over-the-wire" schema. I think that long-term TypeChat for other languages might be in scope as well, and I'm curious to hear about what works well/could be better in other languages. |
Beta Was this translation helpful? Give feedback.
-
Conceivably, one can use https://github.com/YousefED/typescript-json-schema to convert their types to a JSON schema, offline.
Keep using the TypeScript as the over-the-wire format. Related: if you are starting with a JSON schema, convert to TypeScript with something like https://github.com/bcherny/json-schema-to-typescript |
Beta Was this translation helpful? Give feedback.
-
I try to combine Python and typechat tool together. When I do 'from typechat import TypeChat', but it shows that ImportError: cannot import name 'TypeChat' from 'typechat' . I do not know how to solve it. I hope can some suggestions. Thanks |
Beta Was this translation helpful? Give feedback.
-
There are two project related to the python version of typechat: |
Beta Was this translation helpful? Give feedback.
-
Just a question: how do people here feel about the idea of TypeChat for Python being all-async? |
Beta Was this translation helpful? Give feedback.
-
I am a computer novice. Why is my TypeChat not working in Python? PyCharm is indicating many import issues, such as the absence of Callable and Doc in typing_extensions, or that the init.py file of TypeChat is empty? |
Beta Was this translation helpful? Give feedback.
-
Hi,
TypeChat is really great. I wrote a similar app using GPT-3 a year ago for a real-estate company. It was extracting data from unstructured real-estate agents to json files. All pertinent infos that should be searched for by the LLM were declared as json types. Results would be then integrated to an SQL database and used to automatically update a corporate website. Client's management found the idea too far-fetched, too bad not everybody is a visionary computer scientist ;-)
I would definitelay appreciate to be able to use TypeChat with Python language.
Thanks again for this great LLM augmenting tool!
All the best!
Pierre-Emmanuel
Beta Was this translation helpful? Give feedback.
All reactions