-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added model name to type and updated docs Signed-off-by: Prasad Mujumdar <[email protected]>
- Loading branch information
1 parent
850dfef
commit 025b69e
Showing
14 changed files
with
240 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/monocle_apptrace/metamodel/entities/app_hosting_types.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"entity" : "app_hosting", | ||
"types": [ | ||
{ | ||
"name": "aws_lambda", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "aws_sagemaker", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "azure_func", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "azure_mlw", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "github_codespace", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "generic", | ||
"attributes" : [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"description": "Monocle entities represents kinds GenAI technology components and their implementations supported by Monocle", | ||
"monocle_entities": [ | ||
{ | ||
"name": "workflow", | ||
"attributes" : [], | ||
"categorie": [] | ||
}, | ||
{ | ||
"name": "model", | ||
"attributes" : [ | ||
{ | ||
"attribute_name": "model_name", | ||
"attribute_description": "Model name", | ||
"required": true | ||
} | ||
], | ||
"categorie": [ | ||
{ | ||
"name": "llm", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "embedding", | ||
"attributes" : [] | ||
}, | ||
{ | ||
"name": "generic", | ||
"attributes" : [] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "vector_store", | ||
"attributes" : [], | ||
"categorie": [] | ||
}, | ||
{ | ||
"name": "app_hosting", | ||
"attributes" : [], | ||
"categorie": [] | ||
}, | ||
{ | ||
"name": "inference", | ||
"attributes" : [], | ||
"categorie": [] | ||
} | ||
] | ||
} |
157 changes: 0 additions & 157 deletions
157
src/monocle_apptrace/metamodel/entities/entity_types.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.