added more docs

This commit is contained in:
Raghotham Murthy 2024-07-11 01:26:42 -07:00
parent bf18ba3940
commit 5704847d74
2 changed files with 23 additions and 18 deletions

View file

@ -19,9 +19,9 @@
spec = { spec = {
"openapi": "3.1.0", "openapi": "3.1.0",
"info": { "info": {
"title": "[DRAFT] Llama Stack Specification RFC", "title": "[DRAFT] Llama Stack Specification",
"version": "0.0.0", "version": "0.0.1",
"description": "This is the specification of the llama stack that allows" "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."
}, },
"servers": [ "servers": [
{ {
@ -3318,25 +3318,26 @@
], ],
"tags": [ "tags": [
{ {
"name": "PostTraining" "name": "Inference",
"x-displayName": "Set of methods that can be called on the inference service."
}, },
{ {
"name": "RewardScoring" "name": "RewardScoring"
}, },
{ {
"name": "Inference" "name": "AgenticSystem"
},
{
"name": "Datasets"
}, },
{ {
"name": "SyntheticDataGeneration" "name": "SyntheticDataGeneration"
}, },
{ {
"name": "MemoryBanks" "name": "PostTraining"
}, },
{ {
"name": "AgenticSystem" "name": "Datasets"
},
{
"name": "MemoryBanks"
}, },
{ {
"name": "ShieldConfig", "name": "ShieldConfig",

View file

@ -1502,9 +1502,12 @@ components:
pattern: ^(https?://|file://|data:) pattern: ^(https?://|file://|data:)
type: string type: string
info: info:
description: This is the specification of the llama stack that allows description: "This is the specification of the llama stack that provides \n \
title: '[DRAFT] Llama Stack Specification RFC' \ a set of endpoints and their corresponding interfaces that are tailored\
version: 0.0.0 \ to \n best leverage Llama Models. The specification is still\
\ in draft and subject to change."
title: '[DRAFT] Llama Stack Specification'
version: 0.0.1
jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema
openapi: 3.1.0 openapi: 3.1.0
paths: paths:
@ -2012,13 +2015,14 @@ security:
servers: servers:
- url: http://any-hosted-llama-stack.com - url: http://any-hosted-llama-stack.com
tags: tags:
- name: PostTraining
- name: RewardScoring
- name: Inference - name: Inference
- name: Datasets x-displayName: Set of methods that can be called on the inference service.
- name: SyntheticDataGeneration - name: RewardScoring
- name: MemoryBanks
- name: AgenticSystem - name: AgenticSystem
- name: SyntheticDataGeneration
- name: PostTraining
- name: Datasets
- name: MemoryBanks
- description: <SchemaDefinition schemaRef="#/components/schemas/ShieldConfig" /> - description: <SchemaDefinition schemaRef="#/components/schemas/ShieldConfig" />
name: ShieldConfig name: ShieldConfig
- description: <SchemaDefinition schemaRef="#/components/schemas/AgenticSystemCreateRequest" - description: <SchemaDefinition schemaRef="#/components/schemas/AgenticSystemCreateRequest"