Git Product home page Git Product logo

Comments (6)

karlbateman avatar karlbateman commented on May 13, 2024 1

I'm trying to debug an issue with the example you've shared which is documented. At first my implementation was working but after a few interactions I am no longer getting results.

My investigation brought me to this issue in which I'd thought the source was with the API reponse, however I have been unable to debug where the problem occurs.

First thought was perhaps there is an issue with the streams not being closed which is exacerbated when NextJS restarts the dev server on code change. I'm currently unable to confirm this and as there are so many moving parts, I fear this may take some time to debug.

In the meantime, I have fallen back to using the OpenAI integration which has been easier to setup.

Absolutely love the project and the work that has gone into streamlining the integrations ❤️ I'm excited to see where this project goes.

from ai.

shuding avatar shuding commented on May 13, 2024 1

Thank you! Feel free to open an issue or discussion whenever you're running into a problem again. I'll close this for now as there's nothing to track at the moment.

from ai.

shuding avatar shuding commented on May 13, 2024

Can you check what response is? There might be some error message attached.

from ai.

karlbateman avatar karlbateman commented on May 13, 2024

Running the following:

const h = require('@huggingface/inference');

const Hf = new h.HfInference(process.env.HUGGINGFACE_API_KEY);

// Request the HuggingFace API for the response
async function start() {
  const response = Hf.textGenerationStream({
    model: 'oasst-sft-4-pythia-12b-epoch-3.5',
    inputs: 'Hello',
    parameters: {
      max_new_tokens: 200,
      typical_p: 0.2,
      repetition_penalty: 1,
      truncate: 1000,
    },
  });

  console.log('Response: ', response);
  const completion = response.generated_text;
  console.log('Completion: ', completion);
}

start();

Outputs:

Response:  Object [AsyncGenerator] {}
Completion:  undefined

from ai.

shuding avatar shuding commented on May 13, 2024

As you can see, response.generated_text is not defined. Where did you find the code of response.generated_text in the docs?

We have an example here here that shows how the SDK should be used:

CleanShot-2023-06-18-OFBh3yE5@2x

from ai.

hypnocill avatar hypnocill commented on May 13, 2024

@karlbateman did you find what was the issue? I encounter the same situation in which it just stops working and I can't error handle it. Code change hot reloading came to my mind too but can't confirm it

from ai.

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.