Spaces:
Sleeping
Sleeping
File size: 12,928 Bytes
a3643ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | ###############################################################################
#
# Welcome to Baml! To use this generated code, please run the following:
#
# $ pip install baml-py
#
###############################################################################
# This file was generated by BAML: please do not edit it. Instead, edit the
# BAML files and re-generate this code.
#
# ruff: noqa: E501,F401
# flake8: noqa: E501,F401
# pylint: disable=unused-import,line-too-long
# fmt: off
from typing import Any, Dict, List, Optional, TypeVar, Union, TypedDict, Type, cast
from typing_extensions import NotRequired, Literal
import pprint
import baml_py
from pydantic import BaseModel, ValidationError, create_model
from . import partial_types, types
from .types import Checked, Check
from .type_builder import TypeBuilder
from .globals import DO_NOT_USE_DIRECTLY_UNLESS_YOU_KNOW_WHAT_YOURE_DOING_CTX, DO_NOT_USE_DIRECTLY_UNLESS_YOU_KNOW_WHAT_YOURE_DOING_RUNTIME
from .sync_request import HttpRequest, HttpStreamRequest
from .parser import LlmResponseParser, LlmStreamParser
OutputType = TypeVar('OutputType')
# Define the TypedDict with optional parameters having default values
class BamlCallOptions(TypedDict, total=False):
tb: NotRequired[TypeBuilder]
client_registry: NotRequired[baml_py.baml_py.ClientRegistry]
collector: NotRequired[Union[baml_py.baml_py.Collector, List[baml_py.baml_py.Collector]]]
class BamlSyncClient:
__runtime: baml_py.BamlRuntime
__ctx_manager: baml_py.BamlCtxManager
__stream_client: "BamlStreamClient"
__http_request: "HttpRequest"
__http_stream_request: "HttpStreamRequest"
__llm_response_parser: LlmResponseParser
__baml_options: BamlCallOptions
def __init__(self, runtime: baml_py.BamlRuntime, ctx_manager: baml_py.BamlCtxManager, baml_options: Optional[BamlCallOptions] = None):
self.__runtime = runtime
self.__ctx_manager = ctx_manager
self.__stream_client = BamlStreamClient(self.__runtime, self.__ctx_manager, baml_options)
self.__http_request = HttpRequest(self.__runtime, self.__ctx_manager)
self.__http_stream_request = HttpStreamRequest(self.__runtime, self.__ctx_manager)
self.__llm_response_parser = LlmResponseParser(self.__runtime, self.__ctx_manager)
self.__llm_stream_parser = LlmStreamParser(self.__runtime, self.__ctx_manager)
self.__baml_options = baml_options or {}
@property
def stream(self):
return self.__stream_client
@property
def request(self):
return self.__http_request
@property
def stream_request(self):
return self.__http_stream_request
@property
def parse(self):
return self.__llm_response_parser
@property
def parse_stream(self):
return self.__llm_stream_parser
def with_options(
self,
tb: Optional[TypeBuilder] = None,
client_registry: Optional[baml_py.baml_py.ClientRegistry] = None,
collector: Optional[Union[baml_py.baml_py.Collector, List[baml_py.baml_py.Collector]]] = None,
) -> "BamlSyncClient":
"""
Returns a new instance of BamlSyncClient with explicitly typed baml options
for Python 3.8 compatibility.
"""
new_options: BamlCallOptions = self.__baml_options.copy()
# Override if any keyword arguments were provided.
if tb is not None:
new_options["tb"] = tb
if client_registry is not None:
new_options["client_registry"] = client_registry
if collector is not None:
new_options["collector"] = collector
return BamlSyncClient(self.__runtime, self.__ctx_manager, new_options)
def AugmentedResponse(
self,
relevant_document: str,user_instruction: str,
baml_options: BamlCallOptions = {},
) -> str:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.call_function_sync(
"AugmentedResponse",
{
"relevant_document": relevant_document,"user_instruction": user_instruction,
},
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return cast(str, raw.cast_to(types, types, partial_types, False))
def GenerateCommandList(
self,
request: str,
baml_options: BamlCallOptions = {},
) -> types.CommandListLLM:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.call_function_sync(
"GenerateCommandList",
{
"request": request,
},
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return cast(types.CommandListLLM, raw.cast_to(types, types, partial_types, False))
def GenerateCommandListFineTuned(
self,
request: str,
baml_options: BamlCallOptions = {},
) -> types.CommandListLLM:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.call_function_sync(
"GenerateCommandListFineTuned",
{
"request": request,
},
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return cast(types.CommandListLLM, raw.cast_to(types, types, partial_types, False))
def GenerateEnrichedAndReorderedCommand(
self,
request: str,
baml_options: BamlCallOptions = {},
) -> str:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.call_function_sync(
"GenerateEnrichedAndReorderedCommand",
{
"request": request,
},
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return cast(str, raw.cast_to(types, types, partial_types, False))
class BamlStreamClient:
__runtime: baml_py.BamlRuntime
__ctx_manager: baml_py.BamlCtxManager
__baml_options: BamlCallOptions
def __init__(self, runtime: baml_py.BamlRuntime, ctx_manager: baml_py.BamlCtxManager, baml_options: Optional[BamlCallOptions] = None):
self.__runtime = runtime
self.__ctx_manager = ctx_manager
self.__baml_options = baml_options or {}
def AugmentedResponse(
self,
relevant_document: str,user_instruction: str,
baml_options: BamlCallOptions = {},
) -> baml_py.BamlSyncStream[Optional[str], str]:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.stream_function_sync(
"AugmentedResponse",
{
"relevant_document": relevant_document,
"user_instruction": user_instruction,
},
None,
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return baml_py.BamlSyncStream[Optional[str], str](
raw,
lambda x: cast(Optional[str], x.cast_to(types, types, partial_types, True)),
lambda x: cast(str, x.cast_to(types, types, partial_types, False)),
self.__ctx_manager.get(),
)
def GenerateCommandList(
self,
request: str,
baml_options: BamlCallOptions = {},
) -> baml_py.BamlSyncStream[partial_types.CommandListLLM, types.CommandListLLM]:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.stream_function_sync(
"GenerateCommandList",
{
"request": request,
},
None,
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return baml_py.BamlSyncStream[partial_types.CommandListLLM, types.CommandListLLM](
raw,
lambda x: cast(partial_types.CommandListLLM, x.cast_to(types, types, partial_types, True)),
lambda x: cast(types.CommandListLLM, x.cast_to(types, types, partial_types, False)),
self.__ctx_manager.get(),
)
def GenerateCommandListFineTuned(
self,
request: str,
baml_options: BamlCallOptions = {},
) -> baml_py.BamlSyncStream[partial_types.CommandListLLM, types.CommandListLLM]:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.stream_function_sync(
"GenerateCommandListFineTuned",
{
"request": request,
},
None,
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return baml_py.BamlSyncStream[partial_types.CommandListLLM, types.CommandListLLM](
raw,
lambda x: cast(partial_types.CommandListLLM, x.cast_to(types, types, partial_types, True)),
lambda x: cast(types.CommandListLLM, x.cast_to(types, types, partial_types, False)),
self.__ctx_manager.get(),
)
def GenerateEnrichedAndReorderedCommand(
self,
request: str,
baml_options: BamlCallOptions = {},
) -> baml_py.BamlSyncStream[Optional[str], str]:
options: BamlCallOptions = {**self.__baml_options, **(baml_options or {})}
__tb__ = options.get("tb", None)
if __tb__ is not None:
tb = __tb__._tb # type: ignore (we know how to use this private attribute)
else:
tb = None
__cr__ = options.get("client_registry", None)
collector = options.get("collector", None)
collectors = collector if isinstance(collector, list) else [collector] if collector is not None else []
raw = self.__runtime.stream_function_sync(
"GenerateEnrichedAndReorderedCommand",
{
"request": request,
},
None,
self.__ctx_manager.get(),
tb,
__cr__,
collectors,
)
return baml_py.BamlSyncStream[Optional[str], str](
raw,
lambda x: cast(Optional[str], x.cast_to(types, types, partial_types, True)),
lambda x: cast(str, x.cast_to(types, types, partial_types, False)),
self.__ctx_manager.get(),
)
b = BamlSyncClient(DO_NOT_USE_DIRECTLY_UNLESS_YOU_KNOW_WHAT_YOURE_DOING_RUNTIME, DO_NOT_USE_DIRECTLY_UNLESS_YOU_KNOW_WHAT_YOURE_DOING_CTX)
__all__ = ["b"] |