Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Foundation Models
    • Overview
    • API authentication
        • Overview
          • Overview
          • Tune
          • List
          • Describe
          • Cancel
          • GetMetricsUrl
          • GetOptions
          • ListErrors
          • CreateDraft
          • UpdateDraft
          • DeleteDraft
          • TuneDraft
  • Yandex Cloud ML SDK
  • Compatibility with OpenAI
  • Access management
  • Pricing policy
  • Public materials
  • Release notes

In this article:

  • gRPC request
  • ListTuningsRequest
  • ListTuningsResponse
  • TuningTask
  1. API references
  2. Tuning API
  3. gRPC
  4. Tuning
  5. List

Foundation Models Tuning Service API, gRPC: TuningService.List

Written by
Yandex Cloud
Updated at April 24, 2025
  • gRPC request
  • ListTuningsRequest
  • ListTuningsResponse
  • TuningTask

gRPC requestgRPC request

rpc List (ListTuningsRequest) returns (ListTuningsResponse)

ListTuningsRequestListTuningsRequest

{
  "folder_id": "string",
  "page_size": "int64",
  "page_token": "string",
  "status": "Status"
}

Field

Description

folder_id

string

Required field. Required field. ID of the folder to list tunings in.

page_size

int64

Maximum number of tuning tasks to return per page.

page_token

string

Token to retrieve the next page of results.

status

enum Status

  • STATUS_UNSPECIFIED
  • CREATED
  • PENDING
  • IN_PROGRESS
  • COMPLETED
  • FAILED
  • CANCELED
  • DRAFT

ListTuningsResponseListTuningsResponse

{
  "tuning_tasks": [
    {
      "task_id": "string",
      "operation_id": "string",
      "status": "Status",
      "folder_id": "string",
      "created_by": "string",
      "created_at": "google.protobuf.Timestamp",
      "started_at": "google.protobuf.Timestamp",
      "finished_at": "google.protobuf.Timestamp",
      "source_model_uri": "string",
      "target_model_uri": "string",
      "name": "string",
      "description": "string",
      "labels": "map<string, string>"
    }
  ],
  "next_page_token": "string"
}

Field

Description

tuning_tasks[]

TuningTask

List of tuning tasks in the specified folder.

next_page_token

string

Token to retrieve the next page of results.

TuningTaskTuningTask

Field

Description

task_id

string

operation_id

string

status

enum Status

  • STATUS_UNSPECIFIED
  • CREATED
  • PENDING
  • IN_PROGRESS
  • COMPLETED
  • FAILED
  • CANCELED
  • DRAFT

folder_id

string

created_by

string

created_at

google.protobuf.Timestamp

started_at

google.protobuf.Timestamp

finished_at

google.protobuf.Timestamp

source_model_uri

string

target_model_uri

string

name

string

description

string

labels

object (map<string, string>)

Was the article helpful?

Previous
Tune
Next
Describe
© 2025 Direct Cursus Technology L.L.C.