Giter Site home page Giter Site logo

Comments (6)

Narsil avatar Narsil commented on June 8, 2024

https://huggingface.co/OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5?text=%3C%7Cprompter%7C%3EWrite+a+story+about+future+of+AI+development%3C%7Cendoftext%7C%3E%3C%7Cassistant%7C%3E

Everything seems to be working fine...

Can you share your request and the full response ? https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/422

from api-inference-community.

VatsaDev avatar VatsaDev commented on June 8, 2024

At the main website, its fine, but not on code.

code:

async function query(data) {
        const response = await fetch(
            "https://api-inference.huggingface.co/models/bigscience/bloom-560m",//falcon-7b-instruct
            {
                headers: { 
                    "Content-Type": "application/json",
                    Authorization: `Bearer {TOKEN}`
                },
                method: "POST",
                body: JSON.stringify(data),
            }
        );
        const result = await response.json();
        return result;
    }

Screen Shot 2023-07-17 at 4 00 16 PM

from api-inference-community.

Narsil avatar Narsil commented on June 8, 2024

You're not actually sending correct JSON, try sending '{"inputs": "Can you"}'

Note: You should probably invalidate your access token and use another one.

from api-inference-community.

VatsaDev avatar VatsaDev commented on June 8, 2024

I tried that and invalidated tokens:

let text = "once upon a time, there lived a princess in a castle, who";
	async function query(data) {
        const response = await fetch(
            "https://api-inference.huggingface.co/models/OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5",//falcon-7b-instruct
            {
                headers: { 
                    "Content-Type": "application/json",
                    Authorization: `Bearer {token}`
                },
                method: "POST",
                "inputs": data,
            }
        );
        const result = await response.json();
        return result;
    }
    function narrate(){
        text = document.getElementById("editor").value
        query(text).then((response) => {
            console.log(response)
            text = response[0].generated_text;
        })
    }

now I get Failed to parse the request body as JSON: EOF while parsing a value at line 1 column 0

from api-inference-community.

Narsil avatar Narsil commented on June 8, 2024
body: {"inputs": data}

I think
https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
Maybe JSON.stringify({"inputs": data})

from api-inference-community.

VatsaDev avatar VatsaDev commented on June 8, 2024

JSON.stringify({"inputs": data}) worked! thanks for everything!

from api-inference-community.

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.