weave-python 0.36.0__tar.gz → 0.38.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {weave_python-0.36.0 → weave_python-0.38.0}/.github/workflows/generate.yaml +6 -6
- {weave_python-0.36.0 → weave_python-0.38.0}/PKG-INFO +1 -1
- {weave_python-0.36.0 → weave_python-0.38.0}/tools/sqlcgen/sqlcgen.py +1 -1
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2.py +2 -2
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2.pyi +2 -2
- weave_python-0.38.0/weave/weaveapi/chat/v1/chat_pb2.py +76 -0
- weave_python-0.38.0/weave/weaveapi/chat/v1/chat_pb2.pyi +912 -0
- weave_python-0.38.0/weave/weaveapi/chat/v1/service_pb2.py +148 -0
- weave_python-0.38.0/weave/weaveapi/chat/v1/service_pb2.pyi +684 -0
- weave_python-0.38.0/weave/weaveapi/chat/v1/service_pb2_grpc.py +606 -0
- weave_python-0.38.0/weave/weaveapi/chat/v1/service_pb2_grpc.pyi +243 -0
- weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2.py +107 -0
- weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2.pyi +649 -0
- weave_python-0.38.0/weave/weaveapi/consolidation/v1/service_pb2.py +79 -0
- weave_python-0.38.0/weave/weaveapi/consolidation/v1/service_pb2_grpc.py +275 -0
- weave_python-0.38.0/weave/weaveapi/consolidation/v1/service_pb2_grpc.pyi +130 -0
- weave_python-0.38.0/weave/weaveapi/inference/v1/service_pb2.pyi +8 -0
- weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2.py +419 -0
- weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2.pyi +3348 -0
- weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2.py +158 -0
- weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2.pyi +8 -0
- weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2_grpc.py +933 -0
- weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2_grpc.pyi +347 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/model_pb2.py +86 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/model_pb2.pyi +479 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/model_pb2_grpc.py +2 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/model_pb2_grpc.pyi +21 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/service_pb2.py +168 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/service_pb2.pyi +653 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/service_pb2_grpc.py +508 -0
- weave_python-0.38.0/weave/weaveapi/model/v1/service_pb2_grpc.pyi +207 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/organization_pb2.py +51 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/organization_pb2.pyi +111 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/organization_pb2_grpc.py +2 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/organization_pb2_grpc.pyi +21 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/service_pb2.py +149 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/service_pb2.pyi +469 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/service_pb2_grpc.py +463 -0
- weave_python-0.38.0/weave/weaveapi/organization/v1/service_pb2_grpc.pyi +190 -0
- weave_python-0.38.0/weave/weaveapi/project/v1/project_pb2_grpc.py +2 -0
- weave_python-0.38.0/weave/weaveapi/project/v1/project_pb2_grpc.pyi +21 -0
- weave_python-0.38.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py +2 -0
- weave_python-0.38.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi +21 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2.py +193 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2.pyi +1103 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.py +2 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.pyi +21 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2.py +58 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2.pyi +8 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2_grpc.py +181 -0
- weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2_grpc.pyi +88 -0
- weave_python-0.38.0/weave/weaveapi/task/v1/task_pb2_grpc.py +2 -0
- weave_python-0.38.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi +21 -0
- weave_python-0.38.0/weave/weavesql/weavedb/chat.py +1692 -0
- weave_python-0.38.0/weave/weavesql/weavedb/consolidation.py +1006 -0
- weave_python-0.38.0/weave/weavesql/weavedb/document_security.py +573 -0
- weave_python-0.38.0/weave/weavesql/weavedb/ingestion.py +5777 -0
- weave_python-0.38.0/weave/weavesql/weavedb/model_catalog.py +464 -0
- weave_python-0.38.0/weave/weavesql/weavedb/models.py +465 -0
- weave_python-0.38.0/weave/weavesql/weavedb/organization.py +610 -0
- weave_python-0.38.0/weave/weavesql/weavedb/retrieval.py +1720 -0
- weave_python-0.36.0/weave/weavesql/weavedb/models.py +0 -127
- {weave_python-0.36.0 → weave_python-0.38.0}/.github/runs-on.yml +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/.github/workflows/format-lint.yaml +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/.github/workflows/release.yaml +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/.gitignore +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/.python-version +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/LICENSE +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/README.md +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/Taskfile.yaml +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/buf.gen.yaml +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/pyproject.toml +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/renovate.json +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/tools/sqlcgen/README.md +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/tools/sqlcgen/test_sqlcgen.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/uv.lock +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2_grpc.pyi +0 -0
- /weave_python-0.36.0/weave/weaveapi/inference/v1/inference_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/chat/v1/chat_pb2_grpc.py +0 -0
- /weave_python-0.36.0/weave/weaveapi/inference/v1/inference_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/chat/v1/chat_pb2_grpc.pyi +0 -0
- /weave_python-0.36.0/weave/weaveapi/project/v1/project_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2_grpc.py +0 -0
- /weave_python-0.36.0/weave/weaveapi/project/v1/project_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0/weave/weaveapi/inference → weave_python-0.38.0/weave/weaveapi/consolidation}/v1/service_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/inference_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/inference_pb2.pyi +0 -0
- /weave_python-0.36.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/inference/v1/inference_pb2_grpc.py +0 -0
- /weave_python-0.36.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/inference/v1/inference_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/service_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/service_pb2_grpc.pyi +0 -0
- /weave_python-0.36.0/weave/weaveapi/task/v1/task_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2_grpc.py +0 -0
- /weave_python-0.36.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/project_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/project_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/provider_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/provider_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2_grpc.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2_grpc.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/task_pb2.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/task_pb2.pyi +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/event.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/inspection.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/mailbox.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/models.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/run_template.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/snapshot.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/atcdb/team.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/weavedb/project.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/weavedb/provider.py +0 -0
- {weave_python-0.36.0 → weave_python-0.38.0}/weave/weavesql/weavedb/task.py +0 -0
|
@@ -59,13 +59,13 @@ jobs:
|
|
|
59
59
|
with:
|
|
60
60
|
sqlc-version: '1.30.0'
|
|
61
61
|
|
|
62
|
-
- name: Checkout sqlc-gen-python
|
|
62
|
+
- name: Checkout sqlc-gen-python fork branch
|
|
63
63
|
uses: actions/checkout@v6
|
|
64
64
|
with:
|
|
65
65
|
path: sqlc-gen-python
|
|
66
66
|
persist-credentials: 'false'
|
|
67
|
-
repository:
|
|
68
|
-
ref:
|
|
67
|
+
repository: kellen-miller/sqlc-gen-python
|
|
68
|
+
ref: fix/copyfrom-and-empty-generated-classes
|
|
69
69
|
|
|
70
70
|
- name: Setup Go
|
|
71
71
|
uses: actions/setup-go@v6
|
|
@@ -79,7 +79,7 @@ jobs:
|
|
|
79
79
|
uses: actions/cache@v5
|
|
80
80
|
with:
|
|
81
81
|
path: sqlc-gen-python/bin/sqlc-gen-python.wasm
|
|
82
|
-
key: sqlc-gen-python-
|
|
82
|
+
key: sqlc-gen-python-kellen-${{ hashFiles('sqlc-gen-python/go.sum', 'sqlc-gen-python/**/*.go') }}
|
|
83
83
|
|
|
84
84
|
- name: Build sqlc-gen-python wasm
|
|
85
85
|
if: steps.cache_sqlc_py_wasm.outputs.cache-hit != 'true'
|
|
@@ -97,7 +97,7 @@ jobs:
|
|
|
97
97
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
98
98
|
|
|
99
99
|
- name: Setup uv
|
|
100
|
-
uses: astral-sh/setup-uv@
|
|
100
|
+
uses: astral-sh/setup-uv@v8.1.0
|
|
101
101
|
with:
|
|
102
102
|
cache-dependency-glob: "uv.lock"
|
|
103
103
|
enable-cache: true
|
|
@@ -134,7 +134,7 @@ jobs:
|
|
|
134
134
|
- name: Run uv sync
|
|
135
135
|
run: uv sync
|
|
136
136
|
|
|
137
|
-
- uses: astral-sh/ruff-action@
|
|
137
|
+
- uses: astral-sh/ruff-action@v4.0.0
|
|
138
138
|
with:
|
|
139
139
|
args: "--version"
|
|
140
140
|
- run: ruff check --fix
|
|
@@ -99,7 +99,7 @@ def generate_sqlc_config(
|
|
|
99
99
|
"plugins:",
|
|
100
100
|
" - name: py",
|
|
101
101
|
" wasm:",
|
|
102
|
-
f" url: {wasm_url}", # Using a local wasm build from sqlc-gen-python
|
|
102
|
+
f" url: {wasm_url}", # Using a local wasm build from the maintained sqlc-gen-python fork branch until upstream catches up.
|
|
103
103
|
# " url: https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.3.0.wasm",
|
|
104
104
|
# " sha256: fbedae96b5ecae2380a70fb5b925fd4bff58a6cfb1f3140375d098fbab7b3a3c",
|
|
105
105
|
"sql:",
|
|
@@ -20,7 +20,7 @@ _sym_db = _symbol_database.Default()
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
|
|
23
|
-
b'\n\x1dweaveapi/atc/v1/process.proto\x12\x0fweaveapi.atc.v1\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\x9a\x05\n\x07Process\x12\x1d\n\nprocess_id\x18\x01 \x01(\tR\tprocessId\x12\x15\n\x06run_id\x18\x02 \x01(\tR\x05runId\x12\x1d\n\nmailbox_id\x18\x03 \x01(\tR\tmailboxId\x12\x36\n\x06status\x18\x04 \x01(\x0e\x32\x1e.weaveapi.atc.v1.ProcessStatusR\x06status\x12?\n\x0cprocess_type\x18\x05 \x01(\x0e\x32\x1c.weaveapi.atc.v1.ProcessTypeR\x0bprocessType\x12O\n\x0f\x61uthority_level\x18\x06 \x01(\x0e\x32&.weaveapi.atc.v1.ProcessAuthorityLevelR\x0e\x61uthorityLevel\x12\x1b\n\ttask_name\x18\x07 \x01(\tR\x08taskName\x12!\n\x0c\x61\x64\x61pter_type\x18\x08 \x01(\tR\x0b\x61\x64\x61pterType\x12!\n\x0chandler_type\x18\t \x01(\tR\x0bhandlerType\x12!\n\x0cprocess_role\x18\n \x01(\tR\x0bprocessRole\x12*\n\x11parent_process_id\x18\x0b \x01(\tR\x0fparentProcessId\x12\x33\n\x06\x63onfig\x18\x0c \x01(\x0b\x32\x17.google.protobuf.StructB\x02(\x01R\x06\x63onfig\x12=\n\ncreated_at\x18\r \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\tcreatedAt\x12J\n\x11last_heartbeat_at\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\x0flastHeartbeatAt"\xb4\x01\n\x12ProcessTypeSummary\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\nhuman_desc\x18\x02 \x01(\tR\thumanDesc\x12\x19\n\x08llm_desc\x18\x03 \x01(\tR\x07llmDesc\x12\x12\n\x04kind\x18\x04 \x01(\tR\x04kind\x12\x18\n\x07version\x18\x05 \x01(\x05R\x07version\x12"\n\x0c\x63\x61pabilities\x18\x06 \x03(\tR\x0c\x63\x61pabilities*\xbb\x01\n\rProcessStatus\x12\x1e\n\x1aPROCESS_STATUS_UNSPECIFIED\x10\x00\x12\x1a\n\x16PROCESS_STATUS_PENDING\x10\x01\x12\x1a\n\x16PROCESS_STATUS_RUNNING\x10\x02\x12\x19\n\x15PROCESS_STATUS_PAUSED\x10\x03\x12\x1c\n\x18PROCESS_STATUS_COMPLETED\x10\x04\x12\x19\n\x15PROCESS_STATUS_FAILED\x10\x05*\x95\x01\n\x0bProcessType\x12\x1c\n\x18PROCESS_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12PROCESS_TYPE_AGENT\x10\x01\x12\x1b\n\x17PROCESS_TYPE_CONTROLLER\x10\x02\x12\x1a\n\x16PROCESS_TYPE_VALIDATOR\x10\x03\x12\x17\n\x13PROCESS_TYPE_SYSTEM\x10\x04*\
|
|
23
|
+
b'\n\x1dweaveapi/atc/v1/process.proto\x12\x0fweaveapi.atc.v1\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\x9a\x05\n\x07Process\x12\x1d\n\nprocess_id\x18\x01 \x01(\tR\tprocessId\x12\x15\n\x06run_id\x18\x02 \x01(\tR\x05runId\x12\x1d\n\nmailbox_id\x18\x03 \x01(\tR\tmailboxId\x12\x36\n\x06status\x18\x04 \x01(\x0e\x32\x1e.weaveapi.atc.v1.ProcessStatusR\x06status\x12?\n\x0cprocess_type\x18\x05 \x01(\x0e\x32\x1c.weaveapi.atc.v1.ProcessTypeR\x0bprocessType\x12O\n\x0f\x61uthority_level\x18\x06 \x01(\x0e\x32&.weaveapi.atc.v1.ProcessAuthorityLevelR\x0e\x61uthorityLevel\x12\x1b\n\ttask_name\x18\x07 \x01(\tR\x08taskName\x12!\n\x0c\x61\x64\x61pter_type\x18\x08 \x01(\tR\x0b\x61\x64\x61pterType\x12!\n\x0chandler_type\x18\t \x01(\tR\x0bhandlerType\x12!\n\x0cprocess_role\x18\n \x01(\tR\x0bprocessRole\x12*\n\x11parent_process_id\x18\x0b \x01(\tR\x0fparentProcessId\x12\x33\n\x06\x63onfig\x18\x0c \x01(\x0b\x32\x17.google.protobuf.StructB\x02(\x01R\x06\x63onfig\x12=\n\ncreated_at\x18\r \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\tcreatedAt\x12J\n\x11last_heartbeat_at\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x02(\x01R\x0flastHeartbeatAt"\xb4\x01\n\x12ProcessTypeSummary\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\nhuman_desc\x18\x02 \x01(\tR\thumanDesc\x12\x19\n\x08llm_desc\x18\x03 \x01(\tR\x07llmDesc\x12\x12\n\x04kind\x18\x04 \x01(\tR\x04kind\x12\x18\n\x07version\x18\x05 \x01(\x05R\x07version\x12"\n\x0c\x63\x61pabilities\x18\x06 \x03(\tR\x0c\x63\x61pabilities*\xbb\x01\n\rProcessStatus\x12\x1e\n\x1aPROCESS_STATUS_UNSPECIFIED\x10\x00\x12\x1a\n\x16PROCESS_STATUS_PENDING\x10\x01\x12\x1a\n\x16PROCESS_STATUS_RUNNING\x10\x02\x12\x19\n\x15PROCESS_STATUS_PAUSED\x10\x03\x12\x1c\n\x18PROCESS_STATUS_COMPLETED\x10\x04\x12\x19\n\x15PROCESS_STATUS_FAILED\x10\x05*\x95\x01\n\x0bProcessType\x12\x1c\n\x18PROCESS_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12PROCESS_TYPE_AGENT\x10\x01\x12\x1b\n\x17PROCESS_TYPE_CONTROLLER\x10\x02\x12\x1a\n\x16PROCESS_TYPE_VALIDATOR\x10\x03\x12\x17\n\x13PROCESS_TYPE_SYSTEM\x10\x04*\xd5\x01\n\x15ProcessAuthorityLevel\x12\'\n#PROCESS_AUTHORITY_LEVEL_UNSPECIFIED\x10\x00\x12$\n PROCESS_AUTHORITY_LEVEL_EXTERNAL\x10\x01\x12#\n\x1fPROCESS_AUTHORITY_LEVEL_OBSERVE\x10\x02\x12#\n\x1fPROCESS_AUTHORITY_LEVEL_OPERATE\x10\x03\x12#\n\x1fPROCESS_AUTHORITY_LEVEL_CONTROL\x10\x04\x42\xb5\x01\n\x13\x63om.weaveapi.atc.v1B\x0cProcessProtoP\x01Z2github.com/weave-labs/weave-go/weaveapi/atc/v1;atc\xa2\x02\x03WAX\xaa\x02\x0fWeaveapi.Atc.V1\xca\x02\x0fWeaveapi\\Atc\\V1\xe2\x02\x1bWeaveapi\\Atc\\V1\\GPBMetadata\xea\x02\x11Weaveapi::Atc::V1b\x08\x65\x64itionsp\xe8\x07'
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
_globals = globals()
|
|
@@ -46,7 +46,7 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
|
46
46
|
_globals["_PROCESSTYPE"]._serialized_start = 1156
|
|
47
47
|
_globals["_PROCESSTYPE"]._serialized_end = 1305
|
|
48
48
|
_globals["_PROCESSAUTHORITYLEVEL"]._serialized_start = 1308
|
|
49
|
-
_globals["_PROCESSAUTHORITYLEVEL"]._serialized_end =
|
|
49
|
+
_globals["_PROCESSAUTHORITYLEVEL"]._serialized_end = 1521
|
|
50
50
|
_globals["_PROCESS"]._serialized_start = 114
|
|
51
51
|
_globals["_PROCESS"]._serialized_end = 780
|
|
52
52
|
_globals["_PROCESSTYPESUMMARY"]._serialized_start = 783
|
|
@@ -81,7 +81,7 @@ class _ProcessAuthorityLevelEnumTypeWrapper(
|
|
|
81
81
|
):
|
|
82
82
|
DESCRIPTOR: _descriptor.EnumDescriptor
|
|
83
83
|
PROCESS_AUTHORITY_LEVEL_UNSPECIFIED: _ProcessAuthorityLevel.ValueType # 0
|
|
84
|
-
|
|
84
|
+
PROCESS_AUTHORITY_LEVEL_EXTERNAL: _ProcessAuthorityLevel.ValueType # 1
|
|
85
85
|
PROCESS_AUTHORITY_LEVEL_OBSERVE: _ProcessAuthorityLevel.ValueType # 2
|
|
86
86
|
PROCESS_AUTHORITY_LEVEL_OPERATE: _ProcessAuthorityLevel.ValueType # 3
|
|
87
87
|
PROCESS_AUTHORITY_LEVEL_CONTROL: _ProcessAuthorityLevel.ValueType # 4
|
|
@@ -94,7 +94,7 @@ class ProcessAuthorityLevel(
|
|
|
94
94
|
"""
|
|
95
95
|
|
|
96
96
|
PROCESS_AUTHORITY_LEVEL_UNSPECIFIED: ProcessAuthorityLevel.ValueType # 0
|
|
97
|
-
|
|
97
|
+
PROCESS_AUTHORITY_LEVEL_EXTERNAL: ProcessAuthorityLevel.ValueType # 1
|
|
98
98
|
PROCESS_AUTHORITY_LEVEL_OBSERVE: ProcessAuthorityLevel.ValueType # 2
|
|
99
99
|
PROCESS_AUTHORITY_LEVEL_OPERATE: ProcessAuthorityLevel.ValueType # 3
|
|
100
100
|
PROCESS_AUTHORITY_LEVEL_CONTROL: ProcessAuthorityLevel.ValueType # 4
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: weaveapi/chat/v1/chat.proto
|
|
5
|
+
# Protobuf Python Version: 7.34.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
|
|
8
|
+
from google.protobuf import descriptor as _descriptor
|
|
9
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
10
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
11
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
12
|
+
from google.protobuf.internal import builder as _builder
|
|
13
|
+
|
|
14
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
15
|
+
_runtime_version.Domain.PUBLIC, 7, 34, 1, "", "weaveapi/chat/v1/chat.proto"
|
|
16
|
+
)
|
|
17
|
+
# @@protoc_insertion_point(imports)
|
|
18
|
+
|
|
19
|
+
_sym_db = _symbol_database.Default()
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
|
|
23
|
+
b'\n\x1bweaveapi/chat/v1/chat.proto\x12\x10weaveapi.chat.v1\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto"\xcc\x03\n\x0b\x43hatSession\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12+\n\x12\x63reated_by_user_id\x18\x03 \x01(\tR\x0f\x63reatedByUserId\x12\x14\n\x05title\x18\x04 \x01(\tR\x05title\x12\x19\n\x08model_id\x18\x05 \x01(\tR\x07modelId\x12:\n\x19provider_configuration_id\x18\x06 \x01(\tR\x17providerConfigurationId\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x42\n\x0flast_message_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\rlastMessageAt\x12\x30\n\x14\x61ttached_project_ids\x18\n \x03(\tR\x12\x61ttachedProjectIds"\xc2\x05\n\x0b\x43hatMessage\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n\nsession_id\x18\x02 \x01(\tR\tsessionId\x12\x35\n\x04role\x18\x03 \x01(\x0e\x32!.weaveapi.chat.v1.ChatMessageRoleR\x04role\x12\x18\n\x07\x63ontent\x18\x04 \x01(\tR\x07\x63ontent\x12*\n\x11parent_message_id\x18\x05 \x01(\tR\x0fparentMessageId\x12 \n\x0ctool_call_id\x18\x06 \x01(\tR\ntoolCallId\x12K\n\x0ftool_call_state\x18\x07 \x01(\x0e\x32#.weaveapi.chat.v1.ChatToolCallStateR\rtoolCallState\x12\x19\n\x08model_id\x18\x08 \x01(\tR\x07modelId\x12<\n\x1a\x65phemeral_attachment_count\x18\t \x01(\x05R\x18\x65phemeralAttachmentCount\x12\x45\n\x1f\x65phemeral_attachment_mime_types\x18\n \x03(\tR\x1c\x65phemeralAttachmentMimeTypes\x12\x38\n\x0btoken_usage\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ntokenUsage\x12\x44\n\x0cstream_state\x18\x0c \x01(\x0e\x32!.weaveapi.chat.v1.ChatStreamStateR\x0bstreamState\x12\x39\n\ncreated_at\x18\r \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12=\n\x0c\x63ompleted_at\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0b\x63ompletedAt"\xc6\x02\n\x0c\x43hatArtifact\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1d\n\nsession_id\x18\x02 \x01(\tR\tsessionId\x12\x14\n\x05title\x18\x03 \x01(\tR\x05title\x12\x36\n\x04kind\x18\x04 \x01(\x0e\x32".weaveapi.chat.v1.ChatArtifactKindR\x04kind\x12\x1a\n\x08language\x18\x05 \x01(\tR\x08language\x12\'\n\x0f\x63urrent_version\x18\x06 \x01(\x05R\x0e\x63urrentVersion\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt"\xe8\x01\n\x13\x43hatArtifactVersion\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1f\n\x0b\x61rtifact_id\x18\x02 \x01(\tR\nartifactId\x12\x18\n\x07version\x18\x03 \x01(\x05R\x07version\x12\x18\n\x07\x63ontent\x18\x04 \x01(\tR\x07\x63ontent\x12\x31\n\x15\x63reated_by_message_id\x18\x05 \x01(\tR\x12\x63reatedByMessageId\x12\x39\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt"J\n\x17\x43hatEphemeralAttachment\x12\x1b\n\tmime_type\x18\x01 \x01(\tR\x08mimeType\x12\x12\n\x04\x64\x61ta\x18\x02 \x01(\x0cR\x04\x64\x61ta"\xdc\x10\n\x0f\x43hatStreamFrame\x12\x19\n\x08\x65vent_id\x18\x0b \x01(\tR\x07\x65ventId\x12[\n\x0fmessage_started\x18\x01 \x01(\x0b\x32\x30.weaveapi.chat.v1.ChatStreamFrame.MessageStartedH\x00R\x0emessageStarted\x12U\n\rmessage_delta\x18\x02 \x01(\x0b\x32..weaveapi.chat.v1.ChatStreamFrame.MessageDeltaH\x00R\x0cmessageDelta\x12\x62\n\x12tool_call_proposed\x18\x03 \x01(\x0b\x32\x32.weaveapi.chat.v1.ChatStreamFrame.ToolCallProposedH\x00R\x10toolCallProposed\x12\x65\n\x13tool_call_executing\x18\x04 \x01(\x0b\x32\x33.weaveapi.chat.v1.ChatStreamFrame.ToolCallExecutingH\x00R\x11toolCallExecuting\x12\\\n\x10tool_call_result\x18\x05 \x01(\x0b\x32\x30.weaveapi.chat.v1.ChatStreamFrame.ToolCallResultH\x00R\x0etoolCallResult\x12\x62\n\x12tool_call_rejected\x18\x06 \x01(\x0b\x32\x32.weaveapi.chat.v1.ChatStreamFrame.ToolCallRejectedH\x00R\x10toolCallRejected\x12^\n\x10\x61rtifact_created\x18\x07 \x01(\x0b\x32\x31.weaveapi.chat.v1.ChatStreamFrame.ArtifactCreatedH\x00R\x0f\x61rtifactCreated\x12^\n\x10\x61rtifact_updated\x18\x08 \x01(\x0b\x32\x31.weaveapi.chat.v1.ChatStreamFrame.ArtifactUpdatedH\x00R\x0f\x61rtifactUpdated\x12^\n\x10message_complete\x18\t \x01(\x0b\x32\x31.weaveapi.chat.v1.ChatStreamFrame.MessageCompleteH\x00R\x0fmessageComplete\x12U\n\rmessage_error\x18\n \x01(\x0b\x32..weaveapi.chat.v1.ChatStreamFrame.MessageErrorH\x00R\x0cmessageError\x1a\x66\n\x0eMessageStarted\x12\x1d\n\nmessage_id\x18\x01 \x01(\tR\tmessageId\x12\x35\n\x04role\x18\x02 \x01(\x0e\x32!.weaveapi.chat.v1.ChatMessageRoleR\x04role\x1aL\n\x0cMessageDelta\x12\x1d\n\nmessage_id\x18\x01 \x01(\tR\tmessageId\x12\x1d\n\ntext_delta\x18\x02 \x01(\tR\ttextDelta\x1a\xcb\x01\n\x10ToolCallProposed\x12\x1d\n\nmessage_id\x18\x01 \x01(\tR\tmessageId\x12 \n\x0ctool_call_id\x18\x02 \x01(\tR\ntoolCallId\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12\x35\n\targuments\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructR\targuments\x12+\n\x11requires_approval\x18\x05 \x01(\x08R\x10requiresApproval\x1a\x80\x01\n\x11ToolCallExecuting\x12 \n\x0ctool_call_id\x18\x01 \x01(\tR\ntoolCallId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x35\n\targuments\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructR\targuments\x1a\x64\n\x0eToolCallResult\x12 \n\x0ctool_call_id\x18\x01 \x01(\tR\ntoolCallId\x12\x16\n\x06status\x18\x02 \x01(\tR\x06status\x12\x18\n\x07summary\x18\x03 \x01(\tR\x07summary\x1aL\n\x10ToolCallRejected\x12 \n\x0ctool_call_id\x18\x01 \x01(\tR\ntoolCallId\x12\x16\n\x06reason\x18\x02 \x01(\tR\x06reason\x1a\x9a\x01\n\x0f\x41rtifactCreated\x12\x1f\n\x0b\x61rtifact_id\x18\x01 \x01(\tR\nartifactId\x12\x14\n\x05title\x18\x02 \x01(\tR\x05title\x12\x36\n\x04kind\x18\x03 \x01(\x0e\x32".weaveapi.chat.v1.ChatArtifactKindR\x04kind\x12\x18\n\x07version\x18\x04 \x01(\x05R\x07version\x1aL\n\x0f\x41rtifactUpdated\x12\x1f\n\x0b\x61rtifact_id\x18\x01 \x01(\tR\nartifactId\x12\x18\n\x07version\x18\x02 \x01(\x05R\x07version\x1aj\n\x0fMessageComplete\x12\x1d\n\nmessage_id\x18\x01 \x01(\tR\tmessageId\x12\x38\n\x0btoken_usage\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructR\ntokenUsage\x1a[\n\x0cMessageError\x12\x1d\n\nmessage_id\x18\x01 \x01(\tR\tmessageId\x12\x12\n\x04\x63ode\x18\x02 \x01(\tR\x04\x63ode\x12\x18\n\x07message\x18\x03 \x01(\tR\x07messageB\x07\n\x05\x66rame*\xab\x01\n\x0f\x43hatMessageRole\x12!\n\x1d\x43HAT_MESSAGE_ROLE_UNSPECIFIED\x10\x00\x12\x1a\n\x16\x43HAT_MESSAGE_ROLE_USER\x10\x01\x12\x1f\n\x1b\x43HAT_MESSAGE_ROLE_ASSISTANT\x10\x02\x12\x1a\n\x16\x43HAT_MESSAGE_ROLE_TOOL\x10\x03\x12\x1c\n\x18\x43HAT_MESSAGE_ROLE_SYSTEM\x10\x04*\x85\x02\n\x11\x43hatToolCallState\x12$\n CHAT_TOOL_CALL_STATE_UNSPECIFIED\x10\x00\x12\x1d\n\x19\x43HAT_TOOL_CALL_STATE_NONE\x10\x01\x12!\n\x1d\x43HAT_TOOL_CALL_STATE_PROPOSED\x10\x02\x12!\n\x1d\x43HAT_TOOL_CALL_STATE_APPROVED\x10\x03\x12!\n\x1d\x43HAT_TOOL_CALL_STATE_REJECTED\x10\x04\x12!\n\x1d\x43HAT_TOOL_CALL_STATE_EXECUTED\x10\x05\x12\x1f\n\x1b\x43HAT_TOOL_CALL_STATE_FAILED\x10\x06*\x92\x01\n\x0f\x43hatStreamState\x12!\n\x1d\x43HAT_STREAM_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1b\x43HAT_STREAM_STATE_STREAMING\x10\x01\x12\x1e\n\x1a\x43HAT_STREAM_STATE_COMPLETE\x10\x02\x12\x1b\n\x17\x43HAT_STREAM_STATE_ERROR\x10\x03*\xb3\x01\n\x10\x43hatArtifactKind\x12"\n\x1e\x43HAT_ARTIFACT_KIND_UNSPECIFIED\x10\x00\x12\x1f\n\x1b\x43HAT_ARTIFACT_KIND_MARKDOWN\x10\x01\x12\x1b\n\x17\x43HAT_ARTIFACT_KIND_HTML\x10\x02\x12 \n\x1c\x43HAT_ARTIFACT_KIND_PLAINTEXT\x10\x03\x12\x1b\n\x17\x43HAT_ARTIFACT_KIND_CODE\x10\x04\x42\xb9\x01\n\x14\x63om.weaveapi.chat.v1B\tChatProtoP\x01Z4github.com/weave-labs/weave-go/weaveapi/chat/v1;chat\xa2\x02\x03WCX\xaa\x02\x10Weaveapi.Chat.V1\xca\x02\x10Weaveapi\\Chat\\V1\xe2\x02\x1cWeaveapi\\Chat\\V1\\GPBMetadata\xea\x02\x12Weaveapi::Chat::V1b\x08\x65\x64itionsp\xe8\x07'
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
_globals = globals()
|
|
27
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
28
|
+
_builder.BuildTopDescriptorsAndMessages(
|
|
29
|
+
DESCRIPTOR, "weaveapi.chat.v1.chat_pb2", _globals
|
|
30
|
+
)
|
|
31
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
32
|
+
_globals["DESCRIPTOR"]._loaded_options = None
|
|
33
|
+
_globals[
|
|
34
|
+
"DESCRIPTOR"
|
|
35
|
+
]._serialized_options = b"\n\024com.weaveapi.chat.v1B\tChatProtoP\001Z4github.com/weave-labs/weave-go/weaveapi/chat/v1;chat\242\002\003WCX\252\002\020Weaveapi.Chat.V1\312\002\020Weaveapi\\Chat\\V1\342\002\034Weaveapi\\Chat\\V1\\GPBMetadata\352\002\022Weaveapi::Chat::V1"
|
|
36
|
+
_globals["_CHATMESSAGEROLE"]._serialized_start = 4068
|
|
37
|
+
_globals["_CHATMESSAGEROLE"]._serialized_end = 4239
|
|
38
|
+
_globals["_CHATTOOLCALLSTATE"]._serialized_start = 4242
|
|
39
|
+
_globals["_CHATTOOLCALLSTATE"]._serialized_end = 4503
|
|
40
|
+
_globals["_CHATSTREAMSTATE"]._serialized_start = 4506
|
|
41
|
+
_globals["_CHATSTREAMSTATE"]._serialized_end = 4652
|
|
42
|
+
_globals["_CHATARTIFACTKIND"]._serialized_start = 4655
|
|
43
|
+
_globals["_CHATARTIFACTKIND"]._serialized_end = 4834
|
|
44
|
+
_globals["_CHATSESSION"]._serialized_start = 113
|
|
45
|
+
_globals["_CHATSESSION"]._serialized_end = 573
|
|
46
|
+
_globals["_CHATMESSAGE"]._serialized_start = 576
|
|
47
|
+
_globals["_CHATMESSAGE"]._serialized_end = 1282
|
|
48
|
+
_globals["_CHATARTIFACT"]._serialized_start = 1285
|
|
49
|
+
_globals["_CHATARTIFACT"]._serialized_end = 1611
|
|
50
|
+
_globals["_CHATARTIFACTVERSION"]._serialized_start = 1614
|
|
51
|
+
_globals["_CHATARTIFACTVERSION"]._serialized_end = 1846
|
|
52
|
+
_globals["_CHATEPHEMERALATTACHMENT"]._serialized_start = 1848
|
|
53
|
+
_globals["_CHATEPHEMERALATTACHMENT"]._serialized_end = 1922
|
|
54
|
+
_globals["_CHATSTREAMFRAME"]._serialized_start = 1925
|
|
55
|
+
_globals["_CHATSTREAMFRAME"]._serialized_end = 4065
|
|
56
|
+
_globals["_CHATSTREAMFRAME_MESSAGESTARTED"]._serialized_start = 2923
|
|
57
|
+
_globals["_CHATSTREAMFRAME_MESSAGESTARTED"]._serialized_end = 3025
|
|
58
|
+
_globals["_CHATSTREAMFRAME_MESSAGEDELTA"]._serialized_start = 3027
|
|
59
|
+
_globals["_CHATSTREAMFRAME_MESSAGEDELTA"]._serialized_end = 3103
|
|
60
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLPROPOSED"]._serialized_start = 3106
|
|
61
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLPROPOSED"]._serialized_end = 3309
|
|
62
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLEXECUTING"]._serialized_start = 3312
|
|
63
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLEXECUTING"]._serialized_end = 3440
|
|
64
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLRESULT"]._serialized_start = 3442
|
|
65
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLRESULT"]._serialized_end = 3542
|
|
66
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLREJECTED"]._serialized_start = 3544
|
|
67
|
+
_globals["_CHATSTREAMFRAME_TOOLCALLREJECTED"]._serialized_end = 3620
|
|
68
|
+
_globals["_CHATSTREAMFRAME_ARTIFACTCREATED"]._serialized_start = 3623
|
|
69
|
+
_globals["_CHATSTREAMFRAME_ARTIFACTCREATED"]._serialized_end = 3777
|
|
70
|
+
_globals["_CHATSTREAMFRAME_ARTIFACTUPDATED"]._serialized_start = 3779
|
|
71
|
+
_globals["_CHATSTREAMFRAME_ARTIFACTUPDATED"]._serialized_end = 3855
|
|
72
|
+
_globals["_CHATSTREAMFRAME_MESSAGECOMPLETE"]._serialized_start = 3857
|
|
73
|
+
_globals["_CHATSTREAMFRAME_MESSAGECOMPLETE"]._serialized_end = 3963
|
|
74
|
+
_globals["_CHATSTREAMFRAME_MESSAGEERROR"]._serialized_start = 3965
|
|
75
|
+
_globals["_CHATSTREAMFRAME_MESSAGEERROR"]._serialized_end = 4056
|
|
76
|
+
# @@protoc_insertion_point(module_scope)
|