TypeChat icon indicating copy to clipboard operation
TypeChat copied to clipboard

TypeChat is a library that makes it easy to build natural language interfaces using types.

Results 92 TypeChat issues
Sort by recently updated
recently updated
newest added
trafficstars

I'm using this function to get summary ``` export const getSummary = async (mails:string) =>{ return new Promise(async (resolve,reject)=> { const response= await translator.translate(mails); if (!response.success) { console.log(response); return reject(response);...

cause: Error: connect ETIMEDOUT 199.59.150.49:443 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1495:16) { errno: -4039, code: 'ETIMEDOUT', syscall: 'connect', address: '199.59.150.49', port: 443 Due to my use of VPN, I have set...

I am currently deploying the model and exposing a callable OpenAI API. I am modifying model.ts to fit my own model, but I'm experiencing instability when using mpt-30b-chat and mpt-30b-instruct....

Question
Discussion

```ts /** * An object representing a successful operation with a result of type `T`. */ export type Success = { success: true; data: T; }; /** * An object...

```ts /** * A request processor for interactive input or input from a text file. If an input file name is specified, * the callback function is invoked for each...

Streaming is a very critical part of our app. Are there any plans to support it some how? _Originally posted by @cb-eli in https://github.com/microsoft/TypeChat/discussions/68_

Suggestion
In Discussion

Exporting `createAxiosLanguageModel` would solve the following problems 1. support custom axios config (e.g. users can pass a proxy) related: #73 #55 #34 2. ability to pass custom parameters to the...

Suggestion
In Discussion

The model I use is gpt-3.5-turbo. I asked him to return the data of the last seven days. I used it for searching. I expected him to return my current...

Question