Back to Continue

GetAssistant200Response

packages/continue-sdk/python/api/docs/GetAssistant200Response.md

1.5.452.5 KB
Original Source

GetAssistant200Response

Properties

NameTypeDescriptionNotes
config_resultListAssistants200ResponseInnerConfigResult
owner_slugstrSlug of the user or organization that owns the agent
package_slugstrSlug of the agent package
icon_urlstrPre-signed URL for the agent's icon[optional]
on_prem_proxy_urlstrURL of the on-premises proxy if the organization uses one[optional]
use_on_prem_proxyboolWhether the organization uses an on-premises proxy[optional]
raw_yamlstrRaw YAML configuration of the agent[optional]

Example

python
from openapi_client.models.get_assistant200_response import GetAssistant200Response

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

# convert the object into a dict
get_assistant200_response_dict = get_assistant200_response_instance.to_dict()
# create an instance of GetAssistant200Response from a dict
get_assistant200_response_from_dict = GetAssistant200Response.from_dict(get_assistant200_response_dict)

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