rename observability -> Telemetry; regen Spec

This commit is contained in:
Ashwin Bharambe 2024-09-07 15:23:53 -07:00
parent 70e682fbdf
commit 741310f78e
7 changed files with 641 additions and 271 deletions

View file

@ -11,7 +11,7 @@ from llama_toolchain.evaluations.api import * # noqa: F403
from llama_toolchain.inference.api import * # noqa: F403 from llama_toolchain.inference.api import * # noqa: F403
from llama_toolchain.batch_inference.api import * # noqa: F403 from llama_toolchain.batch_inference.api import * # noqa: F403
from llama_toolchain.memory.api import * # noqa: F403 from llama_toolchain.memory.api import * # noqa: F403
from llama_toolchain.observability.api import * # noqa: F403 from llama_toolchain.telemetry.api import * # noqa: F403
from llama_toolchain.post_training.api import * # noqa: F403 from llama_toolchain.post_training.api import * # noqa: F403
from llama_toolchain.reward_scoring.api import * # noqa: F403 from llama_toolchain.reward_scoring.api import * # noqa: F403
from llama_toolchain.synthetic_data_generation.api import * # noqa: F403 from llama_toolchain.synthetic_data_generation.api import * # noqa: F403
@ -24,7 +24,7 @@ class LlamaStack(
RewardScoring, RewardScoring,
SyntheticDataGeneration, SyntheticDataGeneration,
Datasets, Datasets,
Observability, Telemetry,
PostTraining, PostTraining,
Memory, Memory,
Evaluations, Evaluations,

View file

@ -134,7 +134,7 @@ class LogSearchRequest(BaseModel):
filters: Optional[Dict[str, Any]] = None filters: Optional[Dict[str, Any]] = None
class Observability(Protocol): class Telemetry(Protocol):
@webmethod(route="/experiments/create") @webmethod(route="/experiments/create")
def create_experiment(self, request: CreateExperimentRequest) -> Experiment: ... def create_experiment(self, request: CreateExperimentRequest) -> Experiment: ...

View file

@ -21,7 +21,7 @@
"info": { "info": {
"title": "[DRAFT] Llama Stack Specification", "title": "[DRAFT] Llama Stack Specification",
"version": "0.0.1", "version": "0.0.1",
"description": "This is the specification of the llama stack that provides\n a set of endpoints and their corresponding interfaces that are tailored to\n best leverage Llama Models. The specification is still in draft and subject to change.\n Generated at 2024-09-04 10:28:38.779789" "description": "This is the specification of the llama stack that provides\n a set of endpoints and their corresponding interfaces that are tailored to\n best leverage Llama Models. The specification is still in draft and subject to change.\n Generated at 2024-09-07 15:23:29.488676"
}, },
"servers": [ "servers": [
{ {
@ -323,7 +323,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -383,7 +383,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -784,7 +784,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [ "parameters": [
{ {
@ -988,7 +988,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [ "parameters": [
{ {
@ -1017,7 +1017,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -1083,7 +1083,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [ "parameters": [
{ {
@ -1242,7 +1242,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -1272,7 +1272,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [] "parameters": []
} }
@ -1305,7 +1305,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -1328,7 +1328,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -1531,7 +1531,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -1561,7 +1561,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -1591,7 +1591,7 @@
} }
}, },
"tags": [ "tags": [
"Observability" "Telemetry"
], ],
"parameters": [], "parameters": [],
"requestBody": { "requestBody": {
@ -2376,7 +2376,183 @@
"$ref": "#/components/schemas/FunctionCallToolDefinition" "$ref": "#/components/schemas/FunctionCallToolDefinition"
}, },
{ {
"$ref": "#/components/schemas/MemoryToolDefinition" "type": "object",
"properties": {
"input_shields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShieldDefinition"
}
},
"output_shields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShieldDefinition"
}
},
"type": {
"type": "string",
"const": "memory"
},
"memory_bank_configs": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "vector"
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "keyvalue"
},
"keys": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type",
"keys"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "keyword"
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "graph"
},
"entities": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type",
"entities"
]
}
]
}
},
"query_generator_config": {
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "default"
},
"sep": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"type",
"sep"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "llm"
},
"model": {
"type": "string"
},
"template": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"type",
"model",
"template"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "custom"
}
},
"additionalProperties": false,
"required": [
"type"
]
}
]
},
"max_tokens_in_context": {
"type": "integer"
},
"max_chunks": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"type",
"memory_bank_configs",
"query_generator_config",
"max_tokens_in_context",
"max_chunks"
]
} }
] ]
} }
@ -2513,129 +2689,6 @@
"parameters" "parameters"
] ]
}, },
"MemoryToolDefinition": {
"type": "object",
"properties": {
"input_shields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShieldDefinition"
}
},
"output_shields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShieldDefinition"
}
},
"type": {
"type": "string",
"const": "memory"
},
"memory_bank_configs": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "vector"
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "keyvalue"
},
"keys": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type",
"keys"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "keyword"
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "graph"
},
"entities": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type",
"entities"
]
}
]
}
},
"max_tokens_in_context": {
"type": "integer"
},
"max_chunks": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"type",
"memory_bank_configs",
"max_tokens_in_context",
"max_chunks"
]
},
"OnViolationAction": { "OnViolationAction": {
"type": "integer", "type": "integer",
"enum": [ "enum": [
@ -2873,7 +2926,183 @@
"$ref": "#/components/schemas/FunctionCallToolDefinition" "$ref": "#/components/schemas/FunctionCallToolDefinition"
}, },
{ {
"$ref": "#/components/schemas/MemoryToolDefinition" "type": "object",
"properties": {
"input_shields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShieldDefinition"
}
},
"output_shields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShieldDefinition"
}
},
"type": {
"type": "string",
"const": "memory"
},
"memory_bank_configs": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "vector"
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "keyvalue"
},
"keys": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type",
"keys"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "keyword"
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type"
]
},
{
"type": "object",
"properties": {
"bank_id": {
"type": "string"
},
"type": {
"type": "string",
"const": "graph"
},
"entities": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
"required": [
"bank_id",
"type",
"entities"
]
}
]
}
},
"query_generator_config": {
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "default"
},
"sep": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"type",
"sep"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "llm"
},
"model": {
"type": "string"
},
"template": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"type",
"model",
"template"
]
},
{
"type": "object",
"properties": {
"type": {
"type": "string",
"const": "custom"
}
},
"additionalProperties": false,
"required": [
"type"
]
}
]
},
"max_tokens_in_context": {
"type": "integer"
},
"max_chunks": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"type",
"memory_bank_configs",
"query_generator_config",
"max_tokens_in_context",
"max_chunks"
]
} }
] ]
} }
@ -5582,35 +5811,35 @@
], ],
"tags": [ "tags": [
{ {
"name": "Observability" "name": "Telemetry"
},
{
"name": "Evaluations"
},
{
"name": "AgenticSystem"
}, },
{ {
"name": "Inference" "name": "Inference"
}, },
{
"name": "BatchInference"
},
{
"name": "PostTraining"
},
{ {
"name": "Datasets" "name": "Datasets"
}, },
{ {
"name": "Memory" "name": "Memory"
}, },
{
"name": "AgenticSystem"
},
{
"name": "Evaluations"
},
{ {
"name": "SyntheticDataGeneration" "name": "SyntheticDataGeneration"
}, },
{ {
"name": "RewardScoring" "name": "RewardScoring"
}, },
{
"name": "PostTraining"
},
{
"name": "BatchInference"
},
{ {
"name": "BatchChatCompletionRequest", "name": "BatchChatCompletionRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchChatCompletionRequest\" />" "description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchChatCompletionRequest\" />"
@ -5743,10 +5972,6 @@
"name": "FunctionCallToolDefinition", "name": "FunctionCallToolDefinition",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/FunctionCallToolDefinition\" />" "description": "<SchemaDefinition schemaRef=\"#/components/schemas/FunctionCallToolDefinition\" />"
}, },
{
"name": "MemoryToolDefinition",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/MemoryToolDefinition\" />"
},
{ {
"name": "OnViolationAction", "name": "OnViolationAction",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/OnViolationAction\" />" "description": "<SchemaDefinition schemaRef=\"#/components/schemas/OnViolationAction\" />"
@ -6134,10 +6359,10 @@
"Evaluations", "Evaluations",
"Inference", "Inference",
"Memory", "Memory",
"Observability",
"PostTraining", "PostTraining",
"RewardScoring", "RewardScoring",
"SyntheticDataGeneration" "SyntheticDataGeneration",
"Telemetry"
] ]
}, },
{ {
@ -6216,7 +6441,6 @@
"MemoryBank", "MemoryBank",
"MemoryBankDocument", "MemoryBankDocument",
"MemoryRetrievalStep", "MemoryRetrievalStep",
"MemoryToolDefinition",
"Metric", "Metric",
"OnViolationAction", "OnViolationAction",
"OptimizerConfig", "OptimizerConfig",

View file

@ -30,7 +30,123 @@ components:
- $ref: '#/components/schemas/PhotogenToolDefinition' - $ref: '#/components/schemas/PhotogenToolDefinition'
- $ref: '#/components/schemas/CodeInterpreterToolDefinition' - $ref: '#/components/schemas/CodeInterpreterToolDefinition'
- $ref: '#/components/schemas/FunctionCallToolDefinition' - $ref: '#/components/schemas/FunctionCallToolDefinition'
- $ref: '#/components/schemas/MemoryToolDefinition' - additionalProperties: false
properties:
input_shields:
items:
$ref: '#/components/schemas/ShieldDefinition'
type: array
max_chunks:
type: integer
max_tokens_in_context:
type: integer
memory_bank_configs:
items:
oneOf:
- additionalProperties: false
properties:
bank_id:
type: string
type:
const: vector
type: string
required:
- bank_id
- type
type: object
- additionalProperties: false
properties:
bank_id:
type: string
keys:
items:
type: string
type: array
type:
const: keyvalue
type: string
required:
- bank_id
- type
- keys
type: object
- additionalProperties: false
properties:
bank_id:
type: string
type:
const: keyword
type: string
required:
- bank_id
- type
type: object
- additionalProperties: false
properties:
bank_id:
type: string
entities:
items:
type: string
type: array
type:
const: graph
type: string
required:
- bank_id
- type
- entities
type: object
type: array
output_shields:
items:
$ref: '#/components/schemas/ShieldDefinition'
type: array
query_generator_config:
oneOf:
- additionalProperties: false
properties:
sep:
type: string
type:
const: default
type: string
required:
- type
- sep
type: object
- additionalProperties: false
properties:
model:
type: string
template:
type: string
type:
const: llm
type: string
required:
- type
- model
- template
type: object
- additionalProperties: false
properties:
type:
const: custom
type: string
required:
- type
type: object
type:
const: memory
type: string
required:
- type
- memory_bank_configs
- query_generator_config
- max_tokens_in_context
- max_chunks
type: object
type: array type: array
required: required:
- model - model
@ -107,7 +223,123 @@ components:
- $ref: '#/components/schemas/PhotogenToolDefinition' - $ref: '#/components/schemas/PhotogenToolDefinition'
- $ref: '#/components/schemas/CodeInterpreterToolDefinition' - $ref: '#/components/schemas/CodeInterpreterToolDefinition'
- $ref: '#/components/schemas/FunctionCallToolDefinition' - $ref: '#/components/schemas/FunctionCallToolDefinition'
- $ref: '#/components/schemas/MemoryToolDefinition' - additionalProperties: false
properties:
input_shields:
items:
$ref: '#/components/schemas/ShieldDefinition'
type: array
max_chunks:
type: integer
max_tokens_in_context:
type: integer
memory_bank_configs:
items:
oneOf:
- additionalProperties: false
properties:
bank_id:
type: string
type:
const: vector
type: string
required:
- bank_id
- type
type: object
- additionalProperties: false
properties:
bank_id:
type: string
keys:
items:
type: string
type: array
type:
const: keyvalue
type: string
required:
- bank_id
- type
- keys
type: object
- additionalProperties: false
properties:
bank_id:
type: string
type:
const: keyword
type: string
required:
- bank_id
- type
type: object
- additionalProperties: false
properties:
bank_id:
type: string
entities:
items:
type: string
type: array
type:
const: graph
type: string
required:
- bank_id
- type
- entities
type: object
type: array
output_shields:
items:
$ref: '#/components/schemas/ShieldDefinition'
type: array
query_generator_config:
oneOf:
- additionalProperties: false
properties:
sep:
type: string
type:
const: default
type: string
required:
- type
- sep
type: object
- additionalProperties: false
properties:
model:
type: string
template:
type: string
type:
const: llm
type: string
required:
- type
- model
- template
type: object
- additionalProperties: false
properties:
type:
const: custom
type: string
required:
- type
type: object
type:
const: memory
type: string
required:
- type
- memory_bank_configs
- query_generator_config
- max_tokens_in_context
- max_chunks
type: object
type: array type: array
required: required:
- agent_id - agent_id
@ -1310,88 +1542,6 @@ components:
- memory_bank_ids - memory_bank_ids
- inserted_context - inserted_context
type: object type: object
MemoryToolDefinition:
additionalProperties: false
properties:
input_shields:
items:
$ref: '#/components/schemas/ShieldDefinition'
type: array
max_chunks:
type: integer
max_tokens_in_context:
type: integer
memory_bank_configs:
items:
oneOf:
- additionalProperties: false
properties:
bank_id:
type: string
type:
const: vector
type: string
required:
- bank_id
- type
type: object
- additionalProperties: false
properties:
bank_id:
type: string
keys:
items:
type: string
type: array
type:
const: keyvalue
type: string
required:
- bank_id
- type
- keys
type: object
- additionalProperties: false
properties:
bank_id:
type: string
type:
const: keyword
type: string
required:
- bank_id
- type
type: object
- additionalProperties: false
properties:
bank_id:
type: string
entities:
items:
type: string
type: array
type:
const: graph
type: string
required:
- bank_id
- type
- entities
type: object
type: array
output_shields:
items:
$ref: '#/components/schemas/ShieldDefinition'
type: array
type:
const: memory
type: string
required:
- type
- memory_bank_configs
- max_tokens_in_context
- max_chunks
type: object
Metric: Metric:
additionalProperties: false additionalProperties: false
properties: properties:
@ -2459,7 +2609,7 @@ info:
description: "This is the specification of the llama stack that provides\n \ description: "This is the specification of the llama stack that provides\n \
\ a set of endpoints and their corresponding interfaces that are tailored\ \ a set of endpoints and their corresponding interfaces that are tailored\
\ to\n best leverage Llama Models. The specification is still in\ \ to\n best leverage Llama Models. The specification is still in\
\ draft and subject to change.\n Generated at 2024-09-04 10:28:38.779789" \ draft and subject to change.\n Generated at 2024-09-07 15:23:29.488676"
title: '[DRAFT] Llama Stack Specification' title: '[DRAFT] Llama Stack Specification'
version: 0.0.1 version: 0.0.1
jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
@ -2640,7 +2790,7 @@ paths:
$ref: '#/components/schemas/Artifact' $ref: '#/components/schemas/Artifact'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/batch_inference/chat_completion: /batch_inference/chat_completion:
post: post:
parameters: [] parameters: []
@ -2870,7 +3020,7 @@ paths:
$ref: '#/components/schemas/Artifact' $ref: '#/components/schemas/Artifact'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/experiments/artifacts/upload: /experiments/artifacts/upload:
post: post:
parameters: [] parameters: []
@ -2888,7 +3038,7 @@ paths:
$ref: '#/components/schemas/Artifact' $ref: '#/components/schemas/Artifact'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/experiments/create: /experiments/create:
post: post:
parameters: [] parameters: []
@ -2906,7 +3056,7 @@ paths:
$ref: '#/components/schemas/Experiment' $ref: '#/components/schemas/Experiment'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/experiments/create_run: /experiments/create_run:
post: post:
parameters: [] parameters: []
@ -2924,7 +3074,7 @@ paths:
$ref: '#/components/schemas/Run' $ref: '#/components/schemas/Run'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/experiments/get: /experiments/get:
get: get:
parameters: parameters:
@ -2941,7 +3091,7 @@ paths:
$ref: '#/components/schemas/Experiment' $ref: '#/components/schemas/Experiment'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/experiments/list: /experiments/list:
get: get:
parameters: [] parameters: []
@ -2953,7 +3103,7 @@ paths:
$ref: '#/components/schemas/Experiment' $ref: '#/components/schemas/Experiment'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/experiments/update: /experiments/update:
post: post:
parameters: [] parameters: []
@ -2971,7 +3121,7 @@ paths:
$ref: '#/components/schemas/Experiment' $ref: '#/components/schemas/Experiment'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/inference/chat_completion: /inference/chat_completion:
post: post:
parameters: [] parameters: []
@ -3043,7 +3193,7 @@ paths:
$ref: '#/components/schemas/Log' $ref: '#/components/schemas/Log'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/logging/log_messages: /logging/log_messages:
post: post:
parameters: [] parameters: []
@ -3057,7 +3207,7 @@ paths:
'200': '200':
description: OK description: OK
tags: tags:
- Observability - Telemetry
/memory_bank/documents/delete: /memory_bank/documents/delete:
post: post:
parameters: [] parameters: []
@ -3352,7 +3502,7 @@ paths:
'200': '200':
description: OK description: OK
tags: tags:
- Observability - Telemetry
/runs/metrics: /runs/metrics:
get: get:
parameters: parameters:
@ -3369,7 +3519,7 @@ paths:
$ref: '#/components/schemas/Metric' $ref: '#/components/schemas/Metric'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/runs/update: /runs/update:
post: post:
parameters: [] parameters: []
@ -3387,7 +3537,7 @@ paths:
$ref: '#/components/schemas/Run' $ref: '#/components/schemas/Run'
description: OK description: OK
tags: tags:
- Observability - Telemetry
/synthetic_data_generation/generate: /synthetic_data_generation/generate:
post: post:
parameters: [] parameters: []
@ -3411,16 +3561,16 @@ security:
servers: servers:
- url: http://any-hosted-llama-stack.com - url: http://any-hosted-llama-stack.com
tags: tags:
- name: Observability - name: Telemetry
- name: Evaluations
- name: AgenticSystem
- name: Inference - name: Inference
- name: BatchInference
- name: PostTraining
- name: Datasets - name: Datasets
- name: Memory - name: Memory
- name: AgenticSystem
- name: Evaluations
- name: SyntheticDataGeneration - name: SyntheticDataGeneration
- name: RewardScoring - name: RewardScoring
- name: PostTraining
- name: BatchInference
- description: <SchemaDefinition schemaRef="#/components/schemas/BatchChatCompletionRequest" - description: <SchemaDefinition schemaRef="#/components/schemas/BatchChatCompletionRequest"
/> />
name: BatchChatCompletionRequest name: BatchChatCompletionRequest
@ -3525,9 +3675,6 @@ tags:
- description: <SchemaDefinition schemaRef="#/components/schemas/FunctionCallToolDefinition" - description: <SchemaDefinition schemaRef="#/components/schemas/FunctionCallToolDefinition"
/> />
name: FunctionCallToolDefinition name: FunctionCallToolDefinition
- description: <SchemaDefinition schemaRef="#/components/schemas/MemoryToolDefinition"
/>
name: MemoryToolDefinition
- description: <SchemaDefinition schemaRef="#/components/schemas/OnViolationAction" - description: <SchemaDefinition schemaRef="#/components/schemas/OnViolationAction"
/> />
name: OnViolationAction name: OnViolationAction
@ -3852,10 +3999,10 @@ x-tagGroups:
- Evaluations - Evaluations
- Inference - Inference
- Memory - Memory
- Observability
- PostTraining - PostTraining
- RewardScoring - RewardScoring
- SyntheticDataGeneration - SyntheticDataGeneration
- Telemetry
- name: Types - name: Types
tags: tags:
- AgentConfig - AgentConfig
@ -3931,7 +4078,6 @@ x-tagGroups:
- MemoryBank - MemoryBank
- MemoryBankDocument - MemoryBankDocument
- MemoryRetrievalStep - MemoryRetrievalStep
- MemoryToolDefinition
- Metric - Metric
- OnViolationAction - OnViolationAction
- OptimizerConfig - OptimizerConfig

View file

@ -28,4 +28,4 @@ if [ ${#missing_packages[@]} -ne 0 ]; then
exit 1 exit 1
fi fi
PYTHONPATH=$PYTHONPATH:../.. python3 -m rfcs.openapi_generator.generate $* PYTHONPATH=$PYTHONPATH:../.. python -m rfcs.openapi_generator.generate $*