Giter Club home page Giter Club logo

Comments (4)

thegeorgenikhil avatar thegeorgenikhil commented on May 20, 2024 1

Had the same issue, and made a backend called the Completion API 3 times in the same call. It was getting timed out.
The default HTTP client provided has a timeout of 30 seconds

Making a custom HTTP client and setting a longer timeout solved it.

// passing a custom http client with a timeout of 600 seconds
// this is required because the default http client has a timeout of 30 seconds
httpClient := &http.Client{
      Timeout: time.Duration(600 * time.Second),
}
client := gpt3.NewClient(apiKey, gpt3.WithHTTPClient(httpClient))

from go-gpt3.

qimo2020 avatar qimo2020 commented on May 20, 2024

Had the same issue, and made a backend called the Completion API 3 times in the same call. It was getting timed out. The default HTTP client provided has a timeout of 30 seconds

Making a custom HTTP client and setting a longer timeout solved it.

// passing a custom http client with a timeout of 600 seconds
// this is required because the default http client has a timeout of 30 seconds
httpClient := &http.Client{
      Timeout: time.Duration(600 * time.Second),
}
client := gpt3.NewClient(apiKey, gpt3.WithHTTPClient(httpClient))

hello
Still return “context deadline exceeded (Client.Timeout or context cancellation while reading body)”
I used streaming call(client.CompletionStreamWithEngine), but the problem was not solved

from go-gpt3.

hcws avatar hcws commented on May 20, 2024

from go-gpt3.

qimo2020 avatar qimo2020 commented on May 20, 2024

解决了,非常感谢

---Original--- From: @.> Date: Sat, Feb 18, 2023 18:53 PM To: @.>; Cc: @.@.>; Subject: Re: [PullRequestInc/go-gpt3] context deadline exceeded(Client.Timeout or context cancellation while reading body) (Issue #21) Had the same issue, and made a backend called the Completion API 3 times in the same call. It was getting timed out. The default HTTP client provided has a timeout of 30 seconds Making a custom HTTP client and setting a longer timeout solved it. // passing a custom http client with a timeout of 600 seconds // this is required because the default http client has a timeout of 30 seconds httpClient := &http.Client{ Timeout: time.Duration(600 * time.Second), } client := gpt3.NewClient(apiKey, gpt3.WithHTTPClient(httpClient)) hello Still return “context deadline exceeded (Client.Timeout or context cancellation while reading body)” I used streaming call(client.CompletionStreamWithEngine), but the problem was not solved — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

你好,请问你的是流式调用么

from go-gpt3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.