steerable-agent-protocol 0.2.3__tar.gz → 0.2.4__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.
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/PKG-INFO +1 -1
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/pyproject.toml +1 -1
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol/generated.py +83 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol.egg-info/PKG-INFO +1 -1
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/README.md +0 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/setup.cfg +0 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol/__init__.py +0 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol.egg-info/SOURCES.txt +0 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol.egg-info/dependency_links.txt +0 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol.egg-info/requires.txt +0 -0
- {steerable_agent_protocol-0.2.3 → steerable_agent_protocol-0.2.4}/src/steerable_agent_protocol.egg-info/top_level.txt +0 -0
|
@@ -3,6 +3,89 @@ from __future__ import annotations
|
|
|
3
3
|
from typing import Any
|
|
4
4
|
from pydantic import BaseModel
|
|
5
5
|
|
|
6
|
+
class ActionSegmentPayload(BaseModel):
|
|
7
|
+
segments: list[Any]
|
|
8
|
+
|
|
9
|
+
class AnalysisDocumentPayload(BaseModel):
|
|
10
|
+
title: Any | None = None
|
|
11
|
+
body: str
|
|
12
|
+
createdAt: Any | None = None
|
|
13
|
+
modelId: Any | None = None
|
|
14
|
+
|
|
15
|
+
class AskUserQuestionsPayload(BaseModel):
|
|
16
|
+
intro: str
|
|
17
|
+
outro: Any | None = None
|
|
18
|
+
answers: Any | None = None
|
|
19
|
+
questions: list[Any]
|
|
20
|
+
|
|
21
|
+
class CoverageReportPayload(BaseModel):
|
|
22
|
+
reportId: str
|
|
23
|
+
title: str
|
|
24
|
+
overallCoverage: float
|
|
25
|
+
overallMastery: float
|
|
26
|
+
summary: Any | None = None
|
|
27
|
+
sections: list[Any]
|
|
28
|
+
weakPoints: list[Any]
|
|
29
|
+
actions: dict[str, Any]
|
|
30
|
+
|
|
31
|
+
class OrchestrationPlanPayload(BaseModel):
|
|
32
|
+
rationale: str | None = None
|
|
33
|
+
mode: str | None = None
|
|
34
|
+
tasks: list[Any]
|
|
35
|
+
coordinator: dict[str, Any] | None = None
|
|
36
|
+
|
|
37
|
+
class PlanSelectorPayload(BaseModel):
|
|
38
|
+
comparison: str
|
|
39
|
+
selectedPlan: Any | None = None
|
|
40
|
+
goalAttribution: dict[str, Any]
|
|
41
|
+
plans: list[Any]
|
|
42
|
+
|
|
43
|
+
class PlanStepsPayload(BaseModel):
|
|
44
|
+
steps: list[Any]
|
|
45
|
+
|
|
46
|
+
class QuizPayload(BaseModel):
|
|
47
|
+
quizId: str
|
|
48
|
+
title: str
|
|
49
|
+
description: Any | None = None
|
|
50
|
+
submitActionLabel: str
|
|
51
|
+
submittedAnswers: Any | None = None
|
|
52
|
+
questions: list[Any]
|
|
53
|
+
|
|
54
|
+
class ResearchPlanPayload(BaseModel):
|
|
55
|
+
topic: str
|
|
56
|
+
round: int
|
|
57
|
+
final: bool
|
|
58
|
+
subQuestions: list[Any]
|
|
59
|
+
decision: dict[str, Any]
|
|
60
|
+
|
|
61
|
+
class SearchSourcesPayload(BaseModel):
|
|
62
|
+
sources: list[Any]
|
|
63
|
+
|
|
64
|
+
class SuggestedRepliesPayload(BaseModel):
|
|
65
|
+
suggestions: list[Any]
|
|
66
|
+
|
|
67
|
+
class SummaryMessagePayload(BaseModel):
|
|
68
|
+
body: str
|
|
69
|
+
summarizedCount: Any | None = None
|
|
70
|
+
status: Any | None = None
|
|
71
|
+
type: Any | None = None
|
|
72
|
+
|
|
73
|
+
class ThinkingProcessPayload(BaseModel):
|
|
74
|
+
body: str
|
|
75
|
+
defaultExpanded: bool | None = None
|
|
76
|
+
|
|
77
|
+
class ToolExecutionPayload(BaseModel):
|
|
78
|
+
id: str
|
|
79
|
+
name: str
|
|
80
|
+
status: str
|
|
81
|
+
summary: Any | None = None
|
|
82
|
+
args: Any | None = None
|
|
83
|
+
output: Any | None = None
|
|
84
|
+
error: Any | None = None
|
|
85
|
+
durationMs: Any | None = None
|
|
86
|
+
icon: Any | None = None
|
|
87
|
+
expandable: bool | None = None
|
|
88
|
+
|
|
6
89
|
class ChatAgent(BaseModel):
|
|
7
90
|
id: str
|
|
8
91
|
slug: str | None = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|