Coder Social home page Coder Social logo

Comments (5)

lgrammel avatar lgrammel commented on July 2, 2024

You have increased the temperature setting, leading to more random output, and are using a model that's weaker for tool calls (gpt-4o) in JSON mode. This is expected to happen, because the model might produce invalid JSON output in such a setting.

from ai.

pruett avatar pruett commented on July 2, 2024

I tried this example with gpt-3.5-turbo and a temp of 0, and still receiving AI_JSONParseError. Even the example copy/pasted from https://sdk.vercel.ai/examples/next-app/basics/generating-object produces something similar.

Is this expected?

from ai.

lgrammel avatar lgrammel commented on July 2, 2024

Please try without mode: json (then it uses tool calling w/ the OpenAI provider, which is often more robust). For better tool calling results, check out the prompt engineering with tools tips.

from ai.

pruett avatar pruett commented on July 2, 2024

Thanks for the reply. No difference for me, even if I use generateText, for example. The error message is odd, too:

  cause: JSONParseError [AI_JSONParseError]: JSON parsing failed: Text: �webpack/lib/util/registerExternalSerializer�webpack-sources/RawSource�__webpack_require__.r(__webpack_exports__);

Clearly something is off given that it's parsing webpack 😅. All I'm trying is:

export async function GET(request: NextRequest) {
  // imports...

  const { text } = await generateText({
    model: openai("gpt-3.5-turbo"),
    prompt: "tell me a good joke.",
    temperature: 0,
  });
  
  console.log({ text });
  
  return new NextResponse();
}

I'm simply running this code within an API route. I must be doing something incorrectly. Just not sure what.

from ai.

pruett avatar pruett commented on July 2, 2024

Problem solved ✅

Solution: Changing the API route from a GET to a POST

I'm guessing there were weird caching issues from marking the route as a GET that goes away when switching to a POST. Hope that this helps anyone that might stumble across this issue.

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.