This commit is contained in:
a2a-platform
2026-06-27 01:06:34 +00:00
commit 1ebc2372de
5 changed files with 3062 additions and 0 deletions

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# pinecone-openapi-agent
Generated A2APack agent for Pinecone Data Plane API.
- Source OpenAPI: https://raw.githubusercontent.com/pinecone-io/pinecone-api/main/2025-04/db_data_2025-04.oas.yaml
- Generated operations: 16
- Main skill: `auto`
- Routing mode: direct operation skills
The generated code is intentionally editable. Tune prompts, operation
grouping, auth names, and safety policy before publishing serious agents.

13
a2a.yaml Normal file
View File

@@ -0,0 +1,13 @@
name: pinecone-openapi-agent
version: 2025-04
entrypoint: agent:PineconeOpenapiAgent
description: Vector database data-plane API for records, vectors, namespaces, search,
and fetch operations.
runtime:
resources:
cpu: 200m
memory: 512Mi
egress:
allow_hosts:
- '{index_host}'
deny_internet_by_default: true

732
agent.py Normal file

File diff suppressed because one or more lines are too long

2299
openapi.json Normal file

File diff suppressed because it is too large Load Diff

7
requirements.txt Normal file
View File

@@ -0,0 +1,7 @@
# a2a-pack is installed by the platform base image.
deepagents>=0.5.0
langchain>=0.3
langchain-openai>=0.2
langchain-core>=0.3
langgraph>=0.6
httpx>=0.27