Skip to content

Commit

Permalink
update any type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
WillBeebe committed Jul 2, 2024
1 parent 98532df commit 9211c6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ada-python"
version = "0.2.0"
version = "0.2.1"
description = ""
authors = ["Will Beebe"]
packages = [
Expand Down
4 changes: 3 additions & 1 deletion src/abcs/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Any

from pydantic import BaseModel


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

class PromptResponse(BaseModel):
content: str
raw_response: any
raw_response: Any
error: object
usage: UsageStats

Expand Down

0 comments on commit 9211c6f

Please sign in to comment.