Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into introduce-vip-models-pricing-9-part
Browse files Browse the repository at this point in the history
matusdrobuliak66 authored Jan 6, 2025
2 parents 75e4f01 + 300e242 commit 104e42e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@
from fastapi import APIRouter, Depends, Header, HTTPException, status
from models_library.api_schemas_catalog.services import ServiceGet, ServiceUpdate
from models_library.services import ServiceKey, ServiceType, ServiceVersion
from models_library.services_authoring import Author
from models_library.services_metadata_published import ServiceMetaDataPublished
from pydantic import ValidationError
from pydantic.types import PositiveInt
@@ -127,7 +128,11 @@ async def list_services(
name="nodetails",
description="nodetails",
type=ServiceType.COMPUTATIONAL,
authors=[{"name": "nodetails", "email": "[email protected]"}],
authors=[
Author.model_construct(
name="nodetails", email="[email protected]"
)
],
contact="[email protected]",
inputs={},
outputs={},

0 comments on commit 104e42e

Please sign in to comment.