mirror of
https://github.com/EvolutionAPI/adk-python.git
synced 2025-12-21 04:42:19 -06:00
Copybara import of the project:
-- ad923c2c8c503ba73c62db695e88f1a3ea1aeeea by YU MING HSU <abego452@gmail.com>: docs: enhance Contribution process within CONTRIBUTING.md -- 8022924fb7e975ac278d38fce3b5fd593d874536 by YU MING HSU <abego452@gmail.com>: fix: move _maybe_append_user_content from google_llm.py to base_llm.py, so subclass can get benefit from it, call _maybe_append_user_content from generate_content_async within lite_llm.py -- cf891fb1a3bbccaaf9d0055b23f614ce52449977 by YU MING HSU <abego452@gmail.com>: fix: modify install dependencies cmd, and use pyink to format codebase COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/428 from hsuyuming:fix_litellm_error_issue_427 dbec4949798e6399a0410d1b8ba7cc6a7cad7bdd PiperOrigin-RevId: 754124679
This commit is contained in:
committed by
Copybara-Service
parent
8f94a0c7b3
commit
879064343c
@@ -312,9 +312,7 @@ class ConnectionsClient:
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": (
|
||||
f"#/components/schemas/{action_display_name}_Request"
|
||||
)
|
||||
"$ref": f"#/components/schemas/{action_display_name}_Request"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -325,9 +323,7 @@ class ConnectionsClient:
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": (
|
||||
f"#/components/schemas/{action_display_name}_Response"
|
||||
),
|
||||
"$ref": f"#/components/schemas/{action_display_name}_Response",
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -346,11 +342,9 @@ class ConnectionsClient:
|
||||
return {
|
||||
"post": {
|
||||
"summary": f"List {entity}",
|
||||
"description": (
|
||||
f"""Returns the list of {entity} data. If the page token was available in the response, let users know there are more records available. Ask if the user wants to fetch the next page of results. When passing filter use the
|
||||
"description": f"""Returns the list of {entity} data. If the page token was available in the response, let users know there are more records available. Ask if the user wants to fetch the next page of results. When passing filter use the
|
||||
following format: `field_name1='value1' AND field_name2='value2'
|
||||
`. {tool_instructions}"""
|
||||
),
|
||||
`. {tool_instructions}""",
|
||||
"x-operation": "LIST_ENTITIES",
|
||||
"x-entity": f"{entity}",
|
||||
"operationId": f"{tool_name}_list_{entity}",
|
||||
@@ -375,9 +369,7 @@ class ConnectionsClient:
|
||||
f"Returns a list of {entity} of json"
|
||||
f" schema: {schema_as_string}"
|
||||
),
|
||||
"$ref": (
|
||||
"#/components/schemas/execute-connector_Response"
|
||||
),
|
||||
"$ref": "#/components/schemas/execute-connector_Response",
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -421,9 +413,7 @@ class ConnectionsClient:
|
||||
f"Returns {entity} of json schema:"
|
||||
f" {schema_as_string}"
|
||||
),
|
||||
"$ref": (
|
||||
"#/components/schemas/execute-connector_Response"
|
||||
),
|
||||
"$ref": "#/components/schemas/execute-connector_Response",
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -460,9 +450,7 @@ class ConnectionsClient:
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": (
|
||||
"#/components/schemas/execute-connector_Response"
|
||||
)
|
||||
"$ref": "#/components/schemas/execute-connector_Response"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -499,9 +487,7 @@ class ConnectionsClient:
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": (
|
||||
"#/components/schemas/execute-connector_Response"
|
||||
)
|
||||
"$ref": "#/components/schemas/execute-connector_Response"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -538,9 +524,7 @@ class ConnectionsClient:
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": (
|
||||
"#/components/schemas/execute-connector_Response"
|
||||
)
|
||||
"$ref": "#/components/schemas/execute-connector_Response"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user