Skip to content

Commit 94ba44c

Browse files
committed
fixes
1 parent d13e797 commit 94ba44c

File tree

795 files changed

+5179
-4513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

795 files changed

+5179
-4513
lines changed

.speakeasy/gen.lock

Lines changed: 613 additions & 612 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ generation:
3030
generateNewTests: true
3131
skipResponseBodyAssertions: false
3232
python:
33-
version: 0.0.8
33+
version: 0.0.14
3434
additionalDependencies:
3535
dev: {}
3636
main: {}
@@ -59,8 +59,8 @@ python:
5959
paths:
6060
callbacks: ""
6161
errors: errors
62-
operations: "operations"
63-
shared: "components"
62+
operations: operations
63+
shared: components
6464
webhooks: ""
6565
inputModelSuffix: input
6666
legacyPyright: false
File renamed without changes.

docs/components/architecture.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Architecture
2+
3+
Model architecture information
4+
5+
6+
## Fields
7+
8+
| Field | Type | Required | Description | Example |
9+
| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
10+
| `tokenizer` | [Nullable[components.Tokenizer]](../components/tokenizer.md) | :heavy_check_mark: | N/A | GPT |
11+
| `instruct_type` | [Nullable[components.InstructType]](../components/instructtype.md) | :heavy_check_mark: | Instruction format type | |
12+
| `modality` | *Nullable[str]* | :heavy_check_mark: | Primary modality of the model | text |
13+
| `input_modalities` | List[[components.InputModality](../components/inputmodality.md)] | :heavy_check_mark: | Supported input modalities | |
14+
| `output_modalities` | List[[components.OutputModality](../components/outputmodality.md)] | :heavy_check_mark: | Supported output modalities | |
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
# WebSearchPreviewToolUserLocation
1+
# AssistantMessage
22

33

44
## Fields
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------ |
8-
| `type` | [models.WebSearchPreviewToolUserLocationType](../models/websearchpreviewtooluserlocationtype.md) | :heavy_check_mark: | N/A |
9-
| `city` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
10-
| `country` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
11-
| `region` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
12-
| `timezone` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
8+
| `role` | *Literal["assistant"]* | :heavy_check_mark: | N/A |
9+
| `content` | [OptionalNullable[components.AssistantMessageContent]](../components/assistantmessagecontent.md) | :heavy_minus_sign: | N/A |
10+
| `name` | *Optional[str]* | :heavy_minus_sign: | N/A |
11+
| `tool_calls` | List[[components.ChatMessageToolCall](../components/chatmessagetoolcall.md)] | :heavy_minus_sign: | N/A |
12+
| `refusal` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |
13+
| `reasoning` | *OptionalNullable[str]* | :heavy_minus_sign: | N/A |

docs/models/assistantmessagecontent.md renamed to docs/components/assistantmessagecontent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
value: str = /* values here */
1010
```
1111

12-
### `List[models.ChatMessageContentItem]`
12+
### `List[components.ChatMessageContentItem]`
1313

1414
```python
15-
value: List[models.ChatMessageContentItem] = /* values here */
15+
value: List[components.ChatMessageContentItem] = /* values here */
1616
```
1717

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)