Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1021 Bytes

File metadata and controls

31 lines (22 loc) · 1021 Bytes

LLMGatewayService

Properties

Name Type Description Notes
connection_parameters Dict[str, str] [optional]
id str
name str [optional]

Example

from instana_client.models.llm_gateway_service import LLMGatewayService

# TODO update the JSON string below
json = "{}"
# create an instance of LLMGatewayService from a JSON string
llm_gateway_service_instance = LLMGatewayService.from_json(json)
# print the JSON string representation of the object
print(LLMGatewayService.to_json())

# convert the object into a dict
llm_gateway_service_dict = llm_gateway_service_instance.to_dict()
# create an instance of LLMGatewayService from a dict
llm_gateway_service_from_dict = LLMGatewayService.from_dict(llm_gateway_service_dict)

[Back to Model list] [Back to API list] [Back to README]