Skip to content

Commit

Permalink
Merge pull request #293 from whylabs/typed-dict-extensions
Browse files Browse the repository at this point in the history
Typed dict extensions
  • Loading branch information
naddeoa authored Apr 10, 2024
2 parents 9e3243c + 1f7dc63 commit 90f20e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.28.dev7
current_version = 0.0.28.dev8
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
Expand Down
4 changes: 2 additions & 2 deletions langkit/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import time
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import Dict, List, Mapping, Optional, Set, Tuple, TypedDict, Union, cast, overload
from typing import Dict, List, Mapping, Optional, Set, Tuple, Union, cast, overload

import pandas as pd
from typing_extensions import NotRequired
from typing_extensions import NotRequired, TypedDict

from langkit.core.context import Context
from langkit.core.metric import (
Expand Down
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 = "langkit"
version = "0.0.28.dev7"
version = "0.0.28.dev8"
description = "A language toolkit for monitoring LLM interactions"
authors = ["WhyLabs.ai <[email protected]>"]
homepage = "https://docs.whylabs.ai/docs/large-language-model-monitoring"
Expand Down

0 comments on commit 90f20e4

Please sign in to comment.