model

package
v0.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 7, 2026 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Overview

Package model defines types for Codex CLI model discovery.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Info

type Info struct {
	ID                        string                  `json:"id"`
	Model                     string                  `json:"model"`
	DisplayName               string                  `json:"displayName"`
	Description               string                  `json:"description"`
	IsDefault                 bool                    `json:"isDefault"`
	Hidden                    bool                    `json:"hidden"`
	DefaultReasoningEffort    string                  `json:"defaultReasoningEffort"`
	SupportedReasoningEfforts []ReasoningEffortOption `json:"supportedReasoningEfforts"`
	InputModalities           []string                `json:"inputModalities"`
	SupportsPersonality       bool                    `json:"supportsPersonality"`
	Metadata                  map[string]any          `json:"metadata,omitempty"`
}

Info describes a model available from the Codex CLI.

func (*Info) UnmarshalJSON added in v0.0.2

func (i *Info) UnmarshalJSON(data []byte) error

UnmarshalJSON preserves provider-specific model fields under Metadata.

type ListResponse

type ListResponse struct {
	Models   []Info         `json:"models"`
	Metadata map[string]any `json:"metadata,omitempty"`
}

ListResponse is the response payload from the model/list RPC method.

func (*ListResponse) UnmarshalJSON added in v0.0.2

func (r *ListResponse) UnmarshalJSON(data []byte) error

UnmarshalJSON preserves response-level model/list fields under Metadata.

type ReasoningEffortOption

type ReasoningEffortOption struct {
	Value string `json:"-"`
	Label string `json:"-"`
}

ReasoningEffortOption describes a selectable reasoning effort level.

func (ReasoningEffortOption) MarshalJSON added in v0.0.2

func (o ReasoningEffortOption) MarshalJSON() ([]byte, error)

MarshalJSON emits the current app-server field names so printed payloads match what Codex actually returns.

func (*ReasoningEffortOption) UnmarshalJSON added in v0.0.2

func (o *ReasoningEffortOption) UnmarshalJSON(data []byte) error

UnmarshalJSON accepts the current app-server payload shape.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL