scale-gp-beta 0.1.0a32__py3-none-any.whl → 0.1.0a34__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scale_gp_beta/_client.py +20 -0
- scale_gp_beta/_version.py +1 -1
- scale_gp_beta/resources/__init__.py +28 -0
- scale_gp_beta/resources/credentials.py +853 -0
- scale_gp_beta/resources/evaluations.py +104 -9
- scale_gp_beta/resources/span_assessments.py +675 -0
- scale_gp_beta/resources/spans.py +24 -0
- scale_gp_beta/types/__init__.py +13 -4
- scale_gp_beta/types/approval_status.py +7 -0
- scale_gp_beta/types/assessment_type.py +7 -0
- scale_gp_beta/types/credential.py +30 -0
- scale_gp_beta/types/credential_create_params.py +25 -0
- scale_gp_beta/types/credential_delete_response.py +13 -0
- scale_gp_beta/types/credential_list_params.py +20 -0
- scale_gp_beta/types/credential_secret.py +13 -0
- scale_gp_beta/types/credential_update_params.py +25 -0
- scale_gp_beta/types/dataset_delete_response.py +1 -4
- scale_gp_beta/types/dataset_item_delete_response.py +1 -4
- scale_gp_beta/types/evaluation_create_params.py +1 -1
- scale_gp_beta/types/evaluation_task.py +182 -0
- scale_gp_beta/types/evaluation_task_param.py +192 -0
- scale_gp_beta/types/evaluation_update_params.py +12 -3
- scale_gp_beta/types/file_delete_response.py +1 -4
- scale_gp_beta/types/model_delete_response.py +1 -4
- scale_gp_beta/types/span_assessment.py +72 -0
- scale_gp_beta/types/span_assessment_create_params.py +40 -0
- scale_gp_beta/types/span_assessment_delete_response.py +13 -0
- scale_gp_beta/types/span_assessment_list_params.py +26 -0
- scale_gp_beta/types/span_assessment_update_params.py +34 -0
- scale_gp_beta/types/span_search_params.py +9 -0
- {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/METADATA +1 -1
- {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/RECORD +34 -23
- scale_gp_beta/types/evaluation_delete_response.py +0 -16
- scale_gp_beta/types/file_list.py +0 -27
- scale_gp_beta/types/inference_model_list.py +0 -27
- scale_gp_beta/types/question_list.py +0 -27
- {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/WHEEL +0 -0
- {scale_gp_beta-0.1.0a32.dist-info → scale_gp_beta-0.1.0a34.dist-info}/licenses/LICENSE +0 -0
|
@@ -38,6 +38,27 @@ __all__ = [
|
|
|
38
38
|
"AutoEvaluationGuidedDecodingEvaluationTaskConfiguration",
|
|
39
39
|
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationStructuredOutputTaskRequestWithItemLocator",
|
|
40
40
|
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationGuidedDecodingTaskRequestWithItemLocator",
|
|
41
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocator",
|
|
42
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedTo",
|
|
43
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToApeAgent",
|
|
44
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToApeAgentConfig",
|
|
45
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToIfAgent",
|
|
46
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToIfAgentConfig",
|
|
47
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToTruthfulnessAgent",
|
|
48
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToTruthfulnessAgentConfig",
|
|
49
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToBaseAgent",
|
|
50
|
+
"AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToBaseAgentConfig",
|
|
51
|
+
"AutoEvaluationAgentEvaluationTask",
|
|
52
|
+
"AutoEvaluationAgentEvaluationTaskConfiguration",
|
|
53
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedTo",
|
|
54
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToApeAgent",
|
|
55
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToApeAgentConfig",
|
|
56
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToIfAgent",
|
|
57
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToIfAgentConfig",
|
|
58
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToTruthfulnessAgent",
|
|
59
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToTruthfulnessAgentConfig",
|
|
60
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToBaseAgent",
|
|
61
|
+
"AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToBaseAgentConfig",
|
|
41
62
|
"ContributorEvaluationQuestionTask",
|
|
42
63
|
"ContributorEvaluationQuestionTaskConfiguration",
|
|
43
64
|
]
|
|
@@ -357,9 +378,104 @@ class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationGuide
|
|
|
357
378
|
system_prompt: str
|
|
358
379
|
|
|
359
380
|
|
|
381
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToApeAgentConfig(
|
|
382
|
+
TypedDict, total=False
|
|
383
|
+
):
|
|
384
|
+
model: str
|
|
385
|
+
|
|
386
|
+
temperature: float
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToApeAgent(
|
|
390
|
+
TypedDict, total=False
|
|
391
|
+
):
|
|
392
|
+
config: Required[
|
|
393
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToApeAgentConfig
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
agent_name: Literal["APEAgent"]
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToIfAgentConfig(
|
|
400
|
+
TypedDict, total=False
|
|
401
|
+
):
|
|
402
|
+
model: str
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToIfAgent(
|
|
406
|
+
TypedDict, total=False
|
|
407
|
+
):
|
|
408
|
+
config: Required[
|
|
409
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToIfAgentConfig
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
agent_name: Literal["IFAgent"]
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToTruthfulnessAgentConfig(
|
|
416
|
+
TypedDict, total=False
|
|
417
|
+
):
|
|
418
|
+
model: str
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToTruthfulnessAgent(
|
|
422
|
+
TypedDict, total=False
|
|
423
|
+
):
|
|
424
|
+
config: Required[
|
|
425
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToTruthfulnessAgentConfig
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
agent_name: Literal["TruthfulnessAgent"]
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToBaseAgentConfig(
|
|
432
|
+
TypedDict, total=False
|
|
433
|
+
):
|
|
434
|
+
model: str
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToBaseAgent(
|
|
438
|
+
TypedDict, total=False
|
|
439
|
+
):
|
|
440
|
+
config: Required[
|
|
441
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToBaseAgentConfig
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
agent_name: Literal["BaseAgent"]
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedTo: TypeAlias = Union[
|
|
448
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToApeAgent,
|
|
449
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToIfAgent,
|
|
450
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToTruthfulnessAgent,
|
|
451
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedToBaseAgent,
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocator(
|
|
456
|
+
TypedDict, total=False
|
|
457
|
+
):
|
|
458
|
+
definition: Required[str]
|
|
459
|
+
|
|
460
|
+
name: Required[str]
|
|
461
|
+
|
|
462
|
+
output_rules: Required[SequenceNotStr[str]]
|
|
463
|
+
|
|
464
|
+
data_fields: SequenceNotStr[str]
|
|
465
|
+
|
|
466
|
+
designated_to: (
|
|
467
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocatorDesignatedTo
|
|
468
|
+
)
|
|
469
|
+
|
|
470
|
+
output_type: Literal["text", "integer", "float", "boolean"]
|
|
471
|
+
|
|
472
|
+
output_values: SequenceNotStr[Union[str, float, bool]]
|
|
473
|
+
|
|
474
|
+
|
|
360
475
|
AutoEvaluationGuidedDecodingEvaluationTaskConfiguration: TypeAlias = Union[
|
|
361
476
|
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationStructuredOutputTaskRequestWithItemLocator,
|
|
362
477
|
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationGuidedDecodingTaskRequestWithItemLocator,
|
|
478
|
+
AutoEvaluationGuidedDecodingEvaluationTaskConfigurationAutoEvaluationAgentTaskRequestWithItemLocator,
|
|
363
479
|
]
|
|
364
480
|
|
|
365
481
|
|
|
@@ -375,6 +491,81 @@ class AutoEvaluationGuidedDecodingEvaluationTask(TypedDict, total=False):
|
|
|
375
491
|
task_type: Literal["auto_evaluation.guided_decoding"]
|
|
376
492
|
|
|
377
493
|
|
|
494
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToApeAgentConfig(TypedDict, total=False):
|
|
495
|
+
model: str
|
|
496
|
+
|
|
497
|
+
temperature: float
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToApeAgent(TypedDict, total=False):
|
|
501
|
+
config: Required[AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToApeAgentConfig]
|
|
502
|
+
|
|
503
|
+
agent_name: Literal["APEAgent"]
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToIfAgentConfig(TypedDict, total=False):
|
|
507
|
+
model: str
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToIfAgent(TypedDict, total=False):
|
|
511
|
+
config: Required[AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToIfAgentConfig]
|
|
512
|
+
|
|
513
|
+
agent_name: Literal["IFAgent"]
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToTruthfulnessAgentConfig(TypedDict, total=False):
|
|
517
|
+
model: str
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToTruthfulnessAgent(TypedDict, total=False):
|
|
521
|
+
config: Required[AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToTruthfulnessAgentConfig]
|
|
522
|
+
|
|
523
|
+
agent_name: Literal["TruthfulnessAgent"]
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToBaseAgentConfig(TypedDict, total=False):
|
|
527
|
+
model: str
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
class AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToBaseAgent(TypedDict, total=False):
|
|
531
|
+
config: Required[AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToBaseAgentConfig]
|
|
532
|
+
|
|
533
|
+
agent_name: Literal["BaseAgent"]
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
AutoEvaluationAgentEvaluationTaskConfigurationDesignatedTo: TypeAlias = Union[
|
|
537
|
+
AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToApeAgent,
|
|
538
|
+
AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToIfAgent,
|
|
539
|
+
AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToTruthfulnessAgent,
|
|
540
|
+
AutoEvaluationAgentEvaluationTaskConfigurationDesignatedToBaseAgent,
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
class AutoEvaluationAgentEvaluationTaskConfiguration(TypedDict, total=False):
|
|
545
|
+
definition: Required[str]
|
|
546
|
+
|
|
547
|
+
name: Required[str]
|
|
548
|
+
|
|
549
|
+
output_rules: Required[SequenceNotStr[str]]
|
|
550
|
+
|
|
551
|
+
data_fields: SequenceNotStr[str]
|
|
552
|
+
|
|
553
|
+
designated_to: AutoEvaluationAgentEvaluationTaskConfigurationDesignatedTo
|
|
554
|
+
|
|
555
|
+
output_type: Literal["text", "integer", "float", "boolean"]
|
|
556
|
+
|
|
557
|
+
output_values: SequenceNotStr[Union[str, float, bool]]
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
class AutoEvaluationAgentEvaluationTask(TypedDict, total=False):
|
|
561
|
+
configuration: Required[AutoEvaluationAgentEvaluationTaskConfiguration]
|
|
562
|
+
|
|
563
|
+
alias: str
|
|
564
|
+
"""Alias to title the results column. Defaults to the `auto_evaluation_agent`"""
|
|
565
|
+
|
|
566
|
+
task_type: Literal["auto_evaluation.agent"]
|
|
567
|
+
|
|
568
|
+
|
|
378
569
|
class ContributorEvaluationQuestionTaskConfiguration(TypedDict, total=False):
|
|
379
570
|
layout: Required["ContainerParam"]
|
|
380
571
|
|
|
@@ -403,6 +594,7 @@ EvaluationTaskParam: TypeAlias = Union[
|
|
|
403
594
|
MetricEvaluationTask,
|
|
404
595
|
AutoEvaluationQuestionTask,
|
|
405
596
|
AutoEvaluationGuidedDecodingEvaluationTask,
|
|
597
|
+
AutoEvaluationAgentEvaluationTask,
|
|
406
598
|
ContributorEvaluationQuestionTask,
|
|
407
599
|
]
|
|
408
600
|
|
|
@@ -2,17 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from
|
|
5
|
+
from typing import Union
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
6
7
|
|
|
7
8
|
from .._types import SequenceNotStr
|
|
8
9
|
|
|
9
|
-
__all__ = ["EvaluationUpdateParams"]
|
|
10
|
+
__all__ = ["EvaluationUpdateParams", "PartialEvaluationUpdateRequest", "RestoreRequest"]
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
class
|
|
13
|
+
class PartialEvaluationUpdateRequest(TypedDict, total=False):
|
|
13
14
|
description: str
|
|
14
15
|
|
|
15
16
|
name: str
|
|
16
17
|
|
|
17
18
|
tags: SequenceNotStr[str]
|
|
18
19
|
"""The tags associated with the entity"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class RestoreRequest(TypedDict, total=False):
|
|
23
|
+
restore: Required[Literal[True]]
|
|
24
|
+
"""Set to true to restore the entity from the database."""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
EvaluationUpdateParams: TypeAlias = Union[PartialEvaluationUpdateRequest, RestoreRequest]
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import Optional
|
|
4
|
-
from typing_extensions import Literal
|
|
5
|
-
|
|
6
3
|
from .._models import BaseModel
|
|
7
4
|
|
|
8
5
|
__all__ = ["FileDeleteResponse"]
|
|
@@ -13,4 +10,4 @@ class FileDeleteResponse(BaseModel):
|
|
|
13
10
|
|
|
14
11
|
deleted: bool
|
|
15
12
|
|
|
16
|
-
object:
|
|
13
|
+
object: str
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import Optional
|
|
4
|
-
from typing_extensions import Literal
|
|
5
|
-
|
|
6
3
|
from .._models import BaseModel
|
|
7
4
|
|
|
8
5
|
__all__ = ["ModelDeleteResponse"]
|
|
@@ -13,4 +10,4 @@ class ModelDeleteResponse(BaseModel):
|
|
|
13
10
|
|
|
14
11
|
deleted: bool
|
|
15
12
|
|
|
16
|
-
object:
|
|
13
|
+
object: str
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import builtins
|
|
4
|
+
from typing import TYPE_CHECKING, Dict, Optional
|
|
5
|
+
from datetime import datetime
|
|
6
|
+
from typing_extensions import Literal
|
|
7
|
+
|
|
8
|
+
from pydantic import Field as FieldInfo
|
|
9
|
+
|
|
10
|
+
from .._models import BaseModel
|
|
11
|
+
from .approval_status import ApprovalStatus
|
|
12
|
+
from .assessment_type import AssessmentType
|
|
13
|
+
|
|
14
|
+
__all__ = ["SpanAssessment"]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class SpanAssessment(BaseModel):
|
|
18
|
+
assessment_id: str
|
|
19
|
+
"""Unique identifier for the assessment"""
|
|
20
|
+
|
|
21
|
+
assessment_type: AssessmentType
|
|
22
|
+
"""Type of assessment"""
|
|
23
|
+
|
|
24
|
+
created_by: str
|
|
25
|
+
"""User who submitted the assessment"""
|
|
26
|
+
|
|
27
|
+
span_id: str
|
|
28
|
+
"""The span this assessment is attached to"""
|
|
29
|
+
|
|
30
|
+
trace_id: str
|
|
31
|
+
"""The trace this assessment is attached to"""
|
|
32
|
+
|
|
33
|
+
account_id: Optional[str] = None
|
|
34
|
+
"""Account this assessment belongs to"""
|
|
35
|
+
|
|
36
|
+
approval: Optional[ApprovalStatus] = None
|
|
37
|
+
"""Approval status (approved/rejected)"""
|
|
38
|
+
|
|
39
|
+
comment: Optional[str] = None
|
|
40
|
+
"""Raw text feedback"""
|
|
41
|
+
|
|
42
|
+
created_at: Optional[datetime] = None
|
|
43
|
+
"""When this assessment was created"""
|
|
44
|
+
|
|
45
|
+
metadata: Optional[Dict[str, object]] = None
|
|
46
|
+
"""Arbitrary JSON object for additional data"""
|
|
47
|
+
|
|
48
|
+
object: Optional[Literal["span.assessment"]] = None
|
|
49
|
+
|
|
50
|
+
overwrite: Optional[Dict[str, builtins.object]] = None
|
|
51
|
+
"""User corrections to span output"""
|
|
52
|
+
|
|
53
|
+
rating: Optional[int] = None
|
|
54
|
+
"""Numerical rating (1-5)"""
|
|
55
|
+
|
|
56
|
+
rubric: Optional[Dict[str, str]] = None
|
|
57
|
+
"""Rule key-value pairs for rubric evaluation"""
|
|
58
|
+
|
|
59
|
+
updated_at: Optional[datetime] = None
|
|
60
|
+
"""When this assessment was last updated"""
|
|
61
|
+
|
|
62
|
+
if TYPE_CHECKING:
|
|
63
|
+
# Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
|
|
64
|
+
# value to this field, so for compatibility we avoid doing it at runtime.
|
|
65
|
+
__pydantic_extra__: Dict[str, builtins.object] = FieldInfo(init=False) # pyright: ignore[reportIncompatibleVariableOverride]
|
|
66
|
+
|
|
67
|
+
# Stub to indicate that arbitrary properties are accepted.
|
|
68
|
+
# To access properties that are not valid identifiers you can use `getattr`, e.g.
|
|
69
|
+
# `getattr(obj, '$type')`
|
|
70
|
+
def __getattr__(self, attr: str) -> builtins.object: ...
|
|
71
|
+
else:
|
|
72
|
+
__pydantic_extra__: Dict[str, builtins.object]
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
from typing_extensions import Required, TypedDict
|
|
7
|
+
|
|
8
|
+
from .approval_status import ApprovalStatus
|
|
9
|
+
from .assessment_type import AssessmentType
|
|
10
|
+
|
|
11
|
+
__all__ = ["SpanAssessmentCreateParams"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class SpanAssessmentCreateParams(TypedDict, total=False):
|
|
15
|
+
assessment_type: Required[AssessmentType]
|
|
16
|
+
"""Type of assessment"""
|
|
17
|
+
|
|
18
|
+
span_id: Required[str]
|
|
19
|
+
"""The ID of the span this assessment is attached to"""
|
|
20
|
+
|
|
21
|
+
trace_id: Required[str]
|
|
22
|
+
"""The ID of the trace this assessment is attached to"""
|
|
23
|
+
|
|
24
|
+
approval: ApprovalStatus
|
|
25
|
+
"""Approval status (approved/rejected)"""
|
|
26
|
+
|
|
27
|
+
comment: str
|
|
28
|
+
"""Raw text feedback"""
|
|
29
|
+
|
|
30
|
+
metadata: Dict[str, object]
|
|
31
|
+
"""Arbitrary JSON object for additional data"""
|
|
32
|
+
|
|
33
|
+
overwrite: Dict[str, object]
|
|
34
|
+
"""User corrections to span output"""
|
|
35
|
+
|
|
36
|
+
rating: int
|
|
37
|
+
"""Numerical rating (1-5)"""
|
|
38
|
+
|
|
39
|
+
rubric: Dict[str, str]
|
|
40
|
+
"""Rule key-value pairs for rubric evaluation"""
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["SpanAssessmentDeleteResponse"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class SpanAssessmentDeleteResponse(BaseModel):
|
|
9
|
+
id: str
|
|
10
|
+
|
|
11
|
+
deleted: bool
|
|
12
|
+
|
|
13
|
+
object: str
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import TypedDict
|
|
6
|
+
|
|
7
|
+
from .assessment_type import AssessmentType
|
|
8
|
+
|
|
9
|
+
__all__ = ["SpanAssessmentListParams"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SpanAssessmentListParams(TypedDict, total=False):
|
|
13
|
+
assessment_type: AssessmentType
|
|
14
|
+
"""Filter by assessment type"""
|
|
15
|
+
|
|
16
|
+
span_id: str
|
|
17
|
+
"""Filter by span ID.
|
|
18
|
+
|
|
19
|
+
Either span_id or trace_id must be provided as a query parameter.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
trace_id: str
|
|
23
|
+
"""Filter by trace ID.
|
|
24
|
+
|
|
25
|
+
Either span_id or trace_id must be provided as a query parameter.
|
|
26
|
+
"""
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
from typing_extensions import TypedDict
|
|
7
|
+
|
|
8
|
+
from .approval_status import ApprovalStatus
|
|
9
|
+
from .assessment_type import AssessmentType
|
|
10
|
+
|
|
11
|
+
__all__ = ["SpanAssessmentUpdateParams"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class SpanAssessmentUpdateParams(TypedDict, total=False):
|
|
15
|
+
approval: ApprovalStatus
|
|
16
|
+
"""Approval status (approved/rejected)"""
|
|
17
|
+
|
|
18
|
+
assessment_type: AssessmentType
|
|
19
|
+
"""Type of assessment"""
|
|
20
|
+
|
|
21
|
+
comment: str
|
|
22
|
+
"""Raw text feedback"""
|
|
23
|
+
|
|
24
|
+
metadata: Dict[str, object]
|
|
25
|
+
"""Arbitrary JSON object for additional data"""
|
|
26
|
+
|
|
27
|
+
overwrite: Dict[str, object]
|
|
28
|
+
"""User corrections to span output"""
|
|
29
|
+
|
|
30
|
+
rating: int
|
|
31
|
+
"""Numerical rating (1-5)"""
|
|
32
|
+
|
|
33
|
+
rubric: Dict[str, str]
|
|
34
|
+
"""Rule key-value pairs for rubric evaluation"""
|
|
@@ -32,6 +32,9 @@ class SpanSearchParams(TypedDict, total=False):
|
|
|
32
32
|
application_variant_ids: SequenceNotStr[str]
|
|
33
33
|
"""Filter by application variant IDs"""
|
|
34
34
|
|
|
35
|
+
assessment_types: SequenceNotStr[str]
|
|
36
|
+
"""Filter spans by traces that have assessments of these types"""
|
|
37
|
+
|
|
35
38
|
excluded_span_ids: SequenceNotStr[str]
|
|
36
39
|
"""List of span IDs to exclude from results"""
|
|
37
40
|
|
|
@@ -44,6 +47,12 @@ class SpanSearchParams(TypedDict, total=False):
|
|
|
44
47
|
group_id: str
|
|
45
48
|
"""Filter by group ID"""
|
|
46
49
|
|
|
50
|
+
max_duration_ms: int
|
|
51
|
+
"""Maximum span duration in milliseconds (inclusive)"""
|
|
52
|
+
|
|
53
|
+
min_duration_ms: int
|
|
54
|
+
"""Minimum span duration in milliseconds (inclusive)"""
|
|
55
|
+
|
|
47
56
|
names: SequenceNotStr[str]
|
|
48
57
|
"""Filter by trace/span name"""
|
|
49
58
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: scale-gp-beta
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a34
|
|
4
4
|
Summary: The official Python library for the Scale GP API
|
|
5
5
|
Project-URL: Homepage, https://github.com/scaleapi/sgp-python-beta
|
|
6
6
|
Project-URL: Repository, https://github.com/scaleapi/sgp-python-beta
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
scale_gp_beta/__init__.py,sha256=MFsKxnaLkZ-Rqv127bA2T0OpHD3me1OnwIom-0I2gB0,2742
|
|
2
2
|
scale_gp_beta/_base_client.py,sha256=-akZ2LpczGs3fUHVZg3eDppkodX4ithhenKNhNp2nb8,67054
|
|
3
|
-
scale_gp_beta/_client.py,sha256=
|
|
3
|
+
scale_gp_beta/_client.py,sha256=7JuikklooBzOCkrqjOInwwkPPHvkMZneilODQQ1JxLI,27168
|
|
4
4
|
scale_gp_beta/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
scale_gp_beta/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
scale_gp_beta/_exceptions.py,sha256=95GM5CLFtP-QMjjmzsr5ajjZOyEZvyaETfGmqNPR8YM,3226
|
|
@@ -11,7 +11,7 @@ scale_gp_beta/_resource.py,sha256=siZly_U6D0AOVLAzaOsqUdEFFzVMbWRj-ml30nvRp7E,11
|
|
|
11
11
|
scale_gp_beta/_response.py,sha256=GemuybPk0uemovTlGHyHkj-ScYTTDJA0jqH5FQqIPwQ,28852
|
|
12
12
|
scale_gp_beta/_streaming.py,sha256=fcCSGXslmi2SmmkM05g2SACXHk2Mj7k1X5uMBu6U5s8,10112
|
|
13
13
|
scale_gp_beta/_types.py,sha256=3-dTgyCs1Fep_LgdDCs7B_SYv9He9BYHJYJunweFT9U,7243
|
|
14
|
-
scale_gp_beta/_version.py,sha256
|
|
14
|
+
scale_gp_beta/_version.py,sha256=-hdANg0MmPrBZC1r6ClfYk9xpwzx6f9FFAXrxR4SYEM,174
|
|
15
15
|
scale_gp_beta/pagination.py,sha256=t-U86PYxl20VRsz8VXOMJJDe7HxkX7ISFMvRNbBNy9s,4054
|
|
16
16
|
scale_gp_beta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
scale_gp_beta/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -43,37 +43,47 @@ scale_gp_beta/lib/tracing/integrations/openai/__init__.py,sha256=47DEQpj8HBSa-_T
|
|
|
43
43
|
scale_gp_beta/lib/tracing/integrations/openai/openai_span_type_map.py,sha256=WIPVdOd1aaVmenZuK3PJ7pZMnk_uJRX5vQXj0s6O9ow,792
|
|
44
44
|
scale_gp_beta/lib/tracing/integrations/openai/openai_tracing_sgp_processor.py,sha256=o-Fp_V7U9cC1kKP0_750GQInKGlF7KAdpIbGTmyu2tg,5270
|
|
45
45
|
scale_gp_beta/lib/tracing/integrations/openai/utils.py,sha256=s6tbNFJ3N7GjqXDM9f2f4r9ugz3wjO0OTU6KzlU_tLQ,2113
|
|
46
|
-
scale_gp_beta/resources/__init__.py,sha256=
|
|
46
|
+
scale_gp_beta/resources/__init__.py,sha256=93-Ld9MSd_dX_jld0IQD_Ckm4n5NvoR2dy0AiNUYDrg,7003
|
|
47
47
|
scale_gp_beta/resources/completions.py,sha256=wtVhUh5LMwXolICQhpeCZUlzRM-ChLSvLiQm92sO-EQ,30934
|
|
48
|
+
scale_gp_beta/resources/credentials.py,sha256=BDhz10_4Ag5bM_iZLGSCWzvdycxM4U3bAYATVml9JYQ,32743
|
|
48
49
|
scale_gp_beta/resources/dataset_items.py,sha256=DGKu3067yVBuUkkR3xRnl0OLqPWY7TyWQd5hviYq5vk,22378
|
|
49
50
|
scale_gp_beta/resources/datasets.py,sha256=6AN7ZETWP42xcVf-uWErzcOuPlKnkAQ1jrtIxzMDd3o,21631
|
|
50
51
|
scale_gp_beta/resources/evaluation_items.py,sha256=tR8FtxCnxVdQzpAnPg9dYQkDZKXyCFe9zEXgk3cbrgw,11517
|
|
51
|
-
scale_gp_beta/resources/evaluations.py,sha256=
|
|
52
|
+
scale_gp_beta/resources/evaluations.py,sha256=MZ21uvFaI-mFl6mOJP3Y1Xu1I6M0FtSwxKxwaZVKGOo,35442
|
|
52
53
|
scale_gp_beta/resources/inference.py,sha256=Gwi7yt8BK47LFRbx9X4Ei4HLh3keZ5a37dHd2eONf4g,7539
|
|
53
54
|
scale_gp_beta/resources/models.py,sha256=obGc4jz3k8Cxl7t218GPmq8HvODX911vc6-wGJ-cXSA,32247
|
|
54
55
|
scale_gp_beta/resources/questions.py,sha256=ylrn_3waLErYzTZHiUkHVLynvKYwIBSRHxgJd0717yk,25828
|
|
55
56
|
scale_gp_beta/resources/responses.py,sha256=ha6JeU1vCoxC4Z00jsbS1D7jEpxy-xlCiEkx5-RqrX0,11755
|
|
56
|
-
scale_gp_beta/resources/
|
|
57
|
+
scale_gp_beta/resources/span_assessments.py,sha256=HOJ6qKtwXVPkgRLO8VmcfEoFWTAlAHl-SrjCpIDj7Ck,25560
|
|
58
|
+
scale_gp_beta/resources/spans.py,sha256=ootzSRVA_1hYXOjADrKJ8uO7CwhwZsfYLVJHE83CnIE,32080
|
|
57
59
|
scale_gp_beta/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
|
|
58
60
|
scale_gp_beta/resources/chat/chat.py,sha256=4OG_TrwVqYvV-7Ha8Nbc6iuXQuys9wKXgkxYmE6p6jk,3672
|
|
59
61
|
scale_gp_beta/resources/chat/completions.py,sha256=NiseRADexm4sZrWBR1CnJZjY46M9qiOMHNECxLIRKu0,50112
|
|
60
62
|
scale_gp_beta/resources/files/__init__.py,sha256=VgAtqUimN5Kf_-lmEaNBnu_ApGegKsJQ1zNf-42MXFA,1002
|
|
61
63
|
scale_gp_beta/resources/files/content.py,sha256=QDtcnsK2my4-ndmwyaR6zyQnV1fEjIJ7CSDoyXUcYxg,5762
|
|
62
64
|
scale_gp_beta/resources/files/files.py,sha256=vN1SNr5DouIX9SFKz7TchbPNTKT9aDCe_t9QQE28A4Y,20653
|
|
63
|
-
scale_gp_beta/types/__init__.py,sha256=
|
|
65
|
+
scale_gp_beta/types/__init__.py,sha256=krfTV2Vwq8tHS7PhegzeoshLL2lzxUxVAqi8RKX3T84,6247
|
|
66
|
+
scale_gp_beta/types/approval_status.py,sha256=rI70l7e2ey2ax8tR_sBkziVSirq_QaDDV1bHgNrfCWQ,227
|
|
67
|
+
scale_gp_beta/types/assessment_type.py,sha256=_4V6RZ5wUyU0UYrDjCoIRdaiiZtZVpY6DMsW1QClq-c,271
|
|
64
68
|
scale_gp_beta/types/completion.py,sha256=1UOFGSkAmTCfhKGSQQLEU-PHGdnWLV1y0usa1UizBBQ,5406
|
|
65
69
|
scale_gp_beta/types/completion_create_params.py,sha256=XWyto29VVJQ5nJTykSXPwlW5b4CZxGU7GSlk1hMwDxo,3114
|
|
66
70
|
scale_gp_beta/types/component.py,sha256=0dLrvTEHpF628wZ-CIniOpsOzKfnLlaZy4OPIFDzoF0,403
|
|
67
71
|
scale_gp_beta/types/component_param.py,sha256=6y4XFmRxDSoFo82Df9ej6rY1pQiq0lIByQXBjXK8kVA,445
|
|
68
72
|
scale_gp_beta/types/container.py,sha256=LoH-zq7JI7dE_BGxUiqBgaS8XbUk2zzkC7ByUF9TzUw,891
|
|
69
73
|
scale_gp_beta/types/container_param.py,sha256=fwIeOygG1QTG9queCSSJwXqx1F4xLtx7hKwH3wf3oMI,925
|
|
74
|
+
scale_gp_beta/types/credential.py,sha256=meNzxwLyxsBO1FITa0xVNONjfmW_aZhb-xbQw2HMqO4,499
|
|
75
|
+
scale_gp_beta/types/credential_create_params.py,sha256=BqpPxLS3rawzvm9vOsQHKWGn901eySz45tFo0KgP5FY,655
|
|
76
|
+
scale_gp_beta/types/credential_delete_response.py,sha256=QlyDqZ3L11hnEMpLJXRvlxLf3YFDpC04ApQa2ZauBII,252
|
|
77
|
+
scale_gp_beta/types/credential_list_params.py,sha256=3yh0VLCaD3PlON_zlddB7rnJsUGc8GU4odrpVMvlr2U,418
|
|
78
|
+
scale_gp_beta/types/credential_secret.py,sha256=xC-_rE4b-s2QJbduvE6DtVPXXI9yWzJ3IGjZB0IM4t4,267
|
|
79
|
+
scale_gp_beta/types/credential_update_params.py,sha256=kZKaZVgBShHxoYVNqWAUo2ZWKN7bcau4Ym3ckYs9_VU,615
|
|
70
80
|
scale_gp_beta/types/dataset.py,sha256=wts1ygPfzuh5pyYZ12YxuJMxVd-yM5hF_ZNUYxpfbho,667
|
|
71
81
|
scale_gp_beta/types/dataset_create_params.py,sha256=D754CiYUWu-yCGr0S1PxIGSIXolOYbpEME8OxIKJ8_I,550
|
|
72
|
-
scale_gp_beta/types/dataset_delete_response.py,sha256=
|
|
82
|
+
scale_gp_beta/types/dataset_delete_response.py,sha256=OKLcQBastV6fhdKw4kNX1HNn_IczD6OCpHDbkAyg3mM,246
|
|
73
83
|
scale_gp_beta/types/dataset_item.py,sha256=ObH7-q9frNAAQ5odjVajozZ53wGTbqZRqNd19dW1iqM,628
|
|
74
84
|
scale_gp_beta/types/dataset_item_batch_create_params.py,sha256=ORwWuIFKilxhuVhzcF32HD68E0-n5dnRlbyxUk4H3Ko,478
|
|
75
85
|
scale_gp_beta/types/dataset_item_batch_create_response.py,sha256=tUVLQ7igWxp4Dn0pvi1K6YEf7m8XnsrlyHbBkVq9i6k,402
|
|
76
|
-
scale_gp_beta/types/dataset_item_delete_response.py,sha256=
|
|
86
|
+
scale_gp_beta/types/dataset_item_delete_response.py,sha256=uwOgD05XLn1xQixILGwOb3EcDK9ov8fuJkyfsg1pjug,254
|
|
77
87
|
scale_gp_beta/types/dataset_item_list_params.py,sha256=CEB161IozqL-n7YC54g76nFqK0sp7l-A0QB9ET0L86M,661
|
|
78
88
|
scale_gp_beta/types/dataset_item_retrieve_params.py,sha256=f0kJg0btCGITamo949F7trvR0no7lOuVfoKTpFLJ5Gw,356
|
|
79
89
|
scale_gp_beta/types/dataset_item_update_params.py,sha256=4voEG9nKbxREiFRLzWqXZAWsw3wIm4EU1cnvOmsvGRA,367
|
|
@@ -81,46 +91,47 @@ scale_gp_beta/types/dataset_list_params.py,sha256=C-NCvkrOv5n43NSe2AiR225zDT0MOE
|
|
|
81
91
|
scale_gp_beta/types/dataset_retrieve_params.py,sha256=5tpzuzX6y1WKKxP2AbjYwwcATpB1eZCv4wZABG3baIQ,282
|
|
82
92
|
scale_gp_beta/types/dataset_update_params.py,sha256=fCci9UEzKEiXCoeH_QxmLRShmqn-EIbz-OkjicHgcfs,401
|
|
83
93
|
scale_gp_beta/types/evaluation.py,sha256=M1cq-FW51SjvWCkNvX0YxmG7LF8A0bSbeWZGGCkM_2Q,1164
|
|
84
|
-
scale_gp_beta/types/evaluation_create_params.py,sha256=
|
|
85
|
-
scale_gp_beta/types/evaluation_delete_response.py,sha256=UnzxLUOxwpF2PVybC28R_XYLSEfah8r4JbQGwYpZk34,354
|
|
94
|
+
scale_gp_beta/types/evaluation_create_params.py,sha256=lyc7smsbyaRWftdp2A3qIULYyq9m2Cgaq_wyqDD6gws,3068
|
|
86
95
|
scale_gp_beta/types/evaluation_item.py,sha256=a1bkOepT748Zs5VCF6FbsOOmX6vJHG-oUmLdxW3-UCE,686
|
|
87
96
|
scale_gp_beta/types/evaluation_item_list_params.py,sha256=7sQVVKB87uO45lYuMUhGR6125a6rG19gYx6gckR7sxU,426
|
|
88
97
|
scale_gp_beta/types/evaluation_item_retrieve_params.py,sha256=UYEKIAQ4dy92ZOSV1tWDZcvXG7_0BSpOND5Ehzs7QM4,296
|
|
89
98
|
scale_gp_beta/types/evaluation_list_params.py,sha256=Xe88rpcm2w-ufTR8bnJYJfk09FiESKddWMzwZCjP_LU,536
|
|
90
99
|
scale_gp_beta/types/evaluation_retrieve_params.py,sha256=_YuT-E2VO-f_SvHaIe24KBbhTNoK8T-3tVB6Ov6cqfg,356
|
|
91
|
-
scale_gp_beta/types/evaluation_task.py,sha256=
|
|
92
|
-
scale_gp_beta/types/evaluation_task_param.py,sha256
|
|
93
|
-
scale_gp_beta/types/evaluation_update_params.py,sha256=
|
|
100
|
+
scale_gp_beta/types/evaluation_task.py,sha256=k2-Hg5EXWZSYB5_luuf_KPCYQr1HfOi5mFhAa0g4NUg,21563
|
|
101
|
+
scale_gp_beta/types/evaluation_task_param.py,sha256=c21FaFoIO5di8YGcvYCLbNo0cz37VWanOnN83Fp3Bfg,20915
|
|
102
|
+
scale_gp_beta/types/evaluation_update_params.py,sha256=BcIkNNB_hKAzA9CEUyvxSBw5rRP6-o8seYPChaMABkg,762
|
|
94
103
|
scale_gp_beta/types/file.py,sha256=vgbFpARZs5_UYOQZkWLur8rFvGM8EROUO_8Ig0uu2B0,611
|
|
95
104
|
scale_gp_beta/types/file_create_params.py,sha256=KpXv6JCbd8BlgceTmBTewxOky2JTJaTW3mcGiVVU7wE,317
|
|
96
|
-
scale_gp_beta/types/file_delete_response.py,sha256=
|
|
97
|
-
scale_gp_beta/types/file_list.py,sha256=Ckj6RZNvIcrSeNg3NWbwyj92uezu4v5_6J4I4M0mjdA,637
|
|
105
|
+
scale_gp_beta/types/file_delete_response.py,sha256=IgZhHsKNfc9NqwqLTYrAam5APFuyquIEUVNQgsz4zyg,240
|
|
98
106
|
scale_gp_beta/types/file_list_params.py,sha256=rFIimu3tLcEWfJItI4a6FDb8LJFX38JSzNlY-3D_0No,354
|
|
99
107
|
scale_gp_beta/types/file_update_params.py,sha256=cZAz43aIXmc0jOz-uKWDsZIJx24NN4t9kQ2XDORvQ-Q,297
|
|
100
108
|
scale_gp_beta/types/inference_create_params.py,sha256=lpdMjG-ufUDpH8bGPbt2klG0I9Q3o374WrqHBjEpPwE,665
|
|
101
109
|
scale_gp_beta/types/inference_create_response.py,sha256=JgoDjN5B8zRUpOXXasD97vFKVN7A6QHKz_PN64pKB6s,390
|
|
102
110
|
scale_gp_beta/types/inference_model.py,sha256=a1lGEIV8UQ7IHqZpWljAtHpce8skN0rd3jD1LCX1on8,4933
|
|
103
|
-
scale_gp_beta/types/inference_model_list.py,sha256=I5qlOvpe-kX2HUp-C0h47Na0w6tRfZiC5wGCJ_KMxUk,688
|
|
104
111
|
scale_gp_beta/types/inference_response.py,sha256=PIX9ihGJ6IP6D6i8gk3o_mbSLy9fvRwZdGyICQKh-q8,337
|
|
105
112
|
scale_gp_beta/types/inference_response_chunk.py,sha256=UIw0gVwnqtQKPTH3QAW9UYVlD0lBz7av-EzcMqF7xgg,353
|
|
106
113
|
scale_gp_beta/types/item_locator.py,sha256=2DgC4WO_8eqnGFUZppHqqhLFhbRQQVph83glxrm4WQQ,184
|
|
107
114
|
scale_gp_beta/types/item_locator_template.py,sha256=eEwfJCLdYr0OZ5-Pk5iGtHSa93h0zGZ015C7RtN1XYY,200
|
|
108
115
|
scale_gp_beta/types/model_create_params.py,sha256=kdmA0Hp7if0Y4niLCxfxJF8R7l2YTEGJztAQht0F4ic,3545
|
|
109
|
-
scale_gp_beta/types/model_delete_response.py,sha256=
|
|
116
|
+
scale_gp_beta/types/model_delete_response.py,sha256=qFOwFx8kjinPSF6oTA347I0fq5x8qBvsrVMG-lxf8V4,242
|
|
110
117
|
scale_gp_beta/types/model_list_params.py,sha256=UJkBX6LCoK4mVUe6LJx_qD1dZLFypPeXof1YBTXURS8,636
|
|
111
118
|
scale_gp_beta/types/model_update_params.py,sha256=HwanIDr9Gwp-c9zdJWJx-JQPFP3MhdBX7mEQL-mlayA,3762
|
|
112
119
|
scale_gp_beta/types/question.py,sha256=0Qgidm-6kQ9-oD-dJtOzWkA3tHBFrcy76e31W30zczg,4149
|
|
113
120
|
scale_gp_beta/types/question_create_params.py,sha256=nYWUMBD0cpmQTGVohR73CqIc4BV54i8b28C6m4CU-Is,3119
|
|
114
|
-
scale_gp_beta/types/question_list.py,sha256=lk4GWhnnThcqnwmbxUNq07vqyXS8ToUYRp4nf7YctGs,657
|
|
115
121
|
scale_gp_beta/types/question_list_params.py,sha256=2x9Ww7wPAhc0hr6WpcqydLuB-mECpMK-MG7jbmtfKJM,362
|
|
116
122
|
scale_gp_beta/types/response.py,sha256=urf4oYc5fUDQkiY6Xqrn9yInsdsBe_8UTRQhzEtGLkI,143236
|
|
117
123
|
scale_gp_beta/types/response_create_params.py,sha256=J1NmJi9BwkHAV2Ui1z5_YzrC54fZI8kShT5mWmOmcF0,28272
|
|
118
124
|
scale_gp_beta/types/response_create_response.py,sha256=_S32F3x6GBEf_ICVD2bE1fsfZitb2nOYiDls5cFe7MA,1106716
|
|
119
125
|
scale_gp_beta/types/span.py,sha256=ygHgE2DcK1Iqpg4oMa-Mx1XmZa7UBtDlfBPcPbq67Cg,1331
|
|
126
|
+
scale_gp_beta/types/span_assessment.py,sha256=yoRuUooLv7GRJn-jw7VhtvTKedp8Z-hGUoV1uwfjYic,2273
|
|
127
|
+
scale_gp_beta/types/span_assessment_create_params.py,sha256=DaPJNq2SjvwF9yCRJeaPRKL0nVayRAv8iJnP9Vg5Ndo,1055
|
|
128
|
+
scale_gp_beta/types/span_assessment_delete_response.py,sha256=GU7gLHHk0AJ4aSC00A_c16_aksItXjA2nVLGVILHM1o,260
|
|
129
|
+
scale_gp_beta/types/span_assessment_list_params.py,sha256=uWG6tcycpIKPApw11C9HG5dfZRO56eHUWz1b7PFg4Pg,626
|
|
130
|
+
scale_gp_beta/types/span_assessment_update_params.py,sha256=StwCobyVcnrZV1asDAxGEasXNEOiiHkD7DU1uD1n9PI,857
|
|
120
131
|
scale_gp_beta/types/span_batch_params.py,sha256=TsV1LnFXDXLhZdggn1BmIjQtAc8DwD6i57cBLCnStK8,1317
|
|
121
132
|
scale_gp_beta/types/span_batch_response.py,sha256=gNRJL9XVm5ELuIOWTCUbwwetxeD0s-M6JZi11USvBpU,354
|
|
122
133
|
scale_gp_beta/types/span_create_params.py,sha256=z9hRw6kb5xZUJkR6q_JcdHX0i0BSnLAgn9IITxJojDY,1227
|
|
123
|
-
scale_gp_beta/types/span_search_params.py,sha256=
|
|
134
|
+
scale_gp_beta/types/span_search_params.py,sha256=LJXN7sCFu2o7woM3Nl6-P4P-lk363x3eRA38bgSQ4fM,2045
|
|
124
135
|
scale_gp_beta/types/span_status.py,sha256=CFCRCm2AeoQhAe0Eg3m9VRYGbi6r9ZaBOZ0QQd2wKRQ,227
|
|
125
136
|
scale_gp_beta/types/span_type.py,sha256=Y4cFVO66V_KJQ2stokdspyBunh4kxgSDt2EZg960DYI,696
|
|
126
137
|
scale_gp_beta/types/span_update_params.py,sha256=xpk0NKNsw_RAXIZN1U1ddqUHpPE--W9_Y3i1tTZKLZg,574
|
|
@@ -137,7 +148,7 @@ scale_gp_beta/types/chat/model_definition.py,sha256=OWcZ4StZ4K2wfL7FqHNK-HqxLjy9
|
|
|
137
148
|
scale_gp_beta/types/files/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
138
149
|
scale_gp_beta/types/shared/__init__.py,sha256=6-walu4YgOTaOj7wsidywTj67PyBJaNYFqasfiTP9-4,130
|
|
139
150
|
scale_gp_beta/types/shared/identity.py,sha256=4XDoJjsPI4lkwyaYyNstw7OunIzJjVWujPoZPrNdoQA,348
|
|
140
|
-
scale_gp_beta-0.1.
|
|
141
|
-
scale_gp_beta-0.1.
|
|
142
|
-
scale_gp_beta-0.1.
|
|
143
|
-
scale_gp_beta-0.1.
|
|
151
|
+
scale_gp_beta-0.1.0a34.dist-info/METADATA,sha256=B-16ODqeoxR5ncBMP1DWKSVJVXCXfKKauVhnlWVwS_I,28623
|
|
152
|
+
scale_gp_beta-0.1.0a34.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
153
|
+
scale_gp_beta-0.1.0a34.dist-info/licenses/LICENSE,sha256=x49Bj8r_ZpqfzThbmfHyZ_bE88XvHdIMI_ANyLHFFRE,11338
|
|
154
|
+
scale_gp_beta-0.1.0a34.dist-info/RECORD,,
|