Skip to content

Юрий Чиж

My feedback

1 result found

  1. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Юрий Чиж commented  · 

    use the name of the programming language after the first “back quotes” to highlight the syntax

    for example:

    ```go
    package cli
    import (
    cliContext "github.com/go-skynet/LocalAI/core/cli/context"
    "github.com/go-skynet/LocalAI/core/cli/worker"
    )

    var CLI struct {
    cliContext.Context `embed:""`

    Run RunCMD `cmd:"" help:"Run LocalAI, this the default command if no other command is specified. Run 'local-ai run --help' for more information" default:"withargs"`
    Models ModelsCMD `cmd:"" help:"Manage LocalAI models and definitions"`
    TTS TTSCMD `cmd:"" help:"Convert text to speech"`
    Transcript TranscriptCMD `cmd:"" help:"Convert audio to text"`
    Worker worker.Worker `cmd:"" help:"Run workers to distribute workload (llama.cpp-only)"`
    }
    ```

Feedback and Knowledge Base