Improve comments

This commit is contained in:
2025-10-26 10:34:36 +01:00
parent 836e918fc5
commit 356c5be2c6
4 changed files with 15 additions and 4 deletions

View File

@@ -8,13 +8,13 @@ import (
"net/http"
)
// OpenAIListInstancesResponse represents the response structure for listing instances (models) in OpenAI format
// OpenAIListInstancesResponse represents the response structure for listing instances (models) in OpenAI-compatible format
type OpenAIListInstancesResponse struct {
Object string `json:"object"`
Data []OpenAIInstance `json:"data"`
}
// OpenAIInstance represents a single instance (model) in OpenAI format
// OpenAIInstance represents a single instance (model) in OpenAI-compatible format
type OpenAIInstance struct {
ID string `json:"id"`
Object string `json:"object"`