Skip to content

Commit 9211c6f

Browse files
committed
update any type hint
1 parent 98532df commit 9211c6f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ada-python"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = ""
55
authors = ["Will Beebe"]
66
packages = [

src/abcs/models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from typing import Any
2+
13
from pydantic import BaseModel
24

35

@@ -8,7 +10,7 @@ class UsageStats(BaseModel):
810

911
class PromptResponse(BaseModel):
1012
content: str
11-
raw_response: any
13+
raw_response: Any
1214
error: object
1315
usage: UsageStats
1416

0 commit comments

Comments
 (0)