Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions packages/server/src/services/question/questionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@

import { ulid } from 'ulid';

import { Disposable, DisposableMap, ErrorCodes, IEventService, IQuestionService, PythinkerError, questionDismissedResult, questionToAgentCoreResponse, questionToBrokerRequest, ILogService, type IDisposable, type QuestionRequest, type QuestionResult } from '@pymodel/agent-core';
import { Disposable, DisposableMap, ErrorCodes, IEventService, PythinkerError, questionDismissedResult, questionToAgentCoreResponse, questionToBrokerRequest, ILogService, type IDisposable, type IQuestionService, type QuestionRequest, type QuestionResult } from '@pymodel/agent-core';
import type {
Event,
QuestionRequest as ProtocolQuestionRequest,
QuestionResponse as ProtocolQuestionResponse,
} from '@pymodel/protocol';


// eslint-disable-next-line @typescript-eslint/no-unused-vars
const _typeAnchor: typeof IQuestionService = IQuestionService;

/**
* A pending question waits on a human, so the timer is a leak guard, not a
* network timeout. Keep it long enough that a person can read the options,
Expand Down
Loading