move PileOfTypes to utils

This commit is contained in:
Evian Schlenz
2025-12-31 01:35:36 +01:00
parent 242655af84
commit 5ceff59c65
2 changed files with 33 additions and 28 deletions

View File

@@ -3,7 +3,7 @@ import json
import numpy as np
import random
from datasets import load_dataset, concatenate_datasets
from typing import Any, Callable, TypedDict
from typing import Any, Callable
from tqdm import tqdm
import webcolors
@@ -17,34 +17,9 @@ from devices import SUPPORTED_DEVICES, format_device_line, random_device_list, \
TOOL_LIGHT_SET, TOOL_START_TIMER, TOOL_LIST_ADD_ITEM, SERVICE_TO_TOOL_MAP, \
HASS_TOOLS, SERVICE_TOOLS
from prompting import generate_system_prompt, USER_INSTRUCTION_PROMPT
from utils import PileOfDeviceType, PileOfFailedToolcallType, PileOfRefusalsType, PileOfSpecificActionType, PileOfStatusRequestType, PileOfTemplatedActionType, PileOfType, get_random_response, generate_random_parameter, closest_color, \
from utils import AssistantTurn, DatasetEntry, Example, PileOfDeviceType, PileOfFailedToolcallType, PileOfRefusalsType, PileOfSpecificActionType, PileOfStatusRequestType, PileOfTemplatedActionType, ToolCall, ToolResult, get_random_response, generate_random_parameter, closest_color, \
get_dataset_piles, NoResponseAvailableException
class ToolCall(TypedDict):
tool_name: str
service_name: str
tool_args: dict[str, Any]
class ToolResult(TypedDict):
tool_name: str
tool_result: str
class AssistantTurn(TypedDict):
answer: str
tool_call_sequence: list[ToolCall]
tool_results: list[ToolResult]
train_on_turn: bool
class Example(TypedDict):
states: list[str]
available_tools: list[str]
question: str
assistant_turns: list[AssistantTurn]
def create_assistant_turn(answer: str, tool_call_sequence: list[ToolCall] | None = None, *, tool_results: list[ToolResult] | None = None, train_on_turn: bool = True) -> AssistantTurn:
"""Bundle the assistant utterance with any tool interaction for that turn."""
return {

View File

@@ -2,7 +2,7 @@ import random
import re
import os
import csv
from typing import TypedDict
from typing import Any, TypedDict
import pandas
from datetime import datetime, timedelta
import webcolors
@@ -227,3 +227,33 @@ def get_dataset_piles(language: str) -> DatasetPiles:
"lock","media_player", "climate", "vacuum", "timer", "todo",
], language)
return _piles_cache[language]
class ToolCall(TypedDict):
tool_name: str
service_name: str
tool_args: dict[str, Any]
class ToolResult(TypedDict):
tool_name: str
tool_result: str
class AssistantTurn(TypedDict):
answer: str
tool_call_sequence: list[ToolCall]
tool_results: list[ToolResult]
train_on_turn: bool
class Example(TypedDict):
states: list[str]
available_tools: list[str]
question: str
assistant_turns: list[AssistantTurn]
class DatasetEntry(TypedDict):
messages: list[dict[str, Any]]
tools: list[dict[str, Any]]