Giter Site home page Giter Site logo

Comments (2)

wouterswim avatar wouterswim commented on June 12, 2024 1

This is the error I get (it happened very occasionally until I added a delay to the generation...).
It seems to be trying to overwrite the existing file because file with same name already exists.

ERROR
RestException: [POST:0] file:///C:/Users/hello/AppData/Local/Temp/Pxxxxxxxe/Axxxxxr/download_cache/Nova-20240202T081616.mp3 Failed!
[Headers]
Invalid Headers: Invalid Headers
[Errors]
Invalid HTTP Method


Maybe adding milliseconds could help solve this?
var clipName = $"{request.Voice}-{DateTime.UtcNow:yyyyMMddThhmmssfff}.{ext}";

Ideally the file would not be written to disk but just stored in memory until discarded?

YOUR CODE

public async Task<Tuple<string, AudioClip>> CreateSpeechAsync(SpeechRequest request, CancellationToken cancellationToken = default)
        {
            var audioFormat = request.ResponseFormat switch
            {
                SpeechResponseFormat.MP3 => AudioType.MPEG,
                _ => throw new NotSupportedException(request.ResponseFormat.ToString())
            };
            var ext = request.ResponseFormat switch
            {
                SpeechResponseFormat.MP3 => "mp3",
                _ => throw new NotSupportedException(request.ResponseFormat.ToString())
            };
            var payload = JsonConvert.SerializeObject(request, OpenAIClient.JsonSerializationOptions);
            var clipName = $"{request.Voice}-{DateTime.UtcNow:yyyyMMddThhmmss}.{ext}";
            var clip = await Rest.DownloadAudioClipAsync(
                GetUrl("/speech"),
                audioFormat,
                UnityWebRequest.kHttpVerbPOST,
                clipName,
                payload,
                parameters: new RestParameters(client.DefaultRequestHeaders),
                debug: EnableDebug,
                cancellationToken: cancellationToken);
            Rest.TryGetDownloadCacheItem(clipName, out var cachedPath);
            return new Tuple<string, AudioClip>(cachedPath, clip);
        }

from com.openai.unity.

StephenHodgson avatar StephenHodgson commented on June 12, 2024

Thanks for reporting, I'll take a look and see what might be causing this issue.

Can you send me a code snippet for repro?

from com.openai.unity.

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.