Skip to content

Commit

Permalink
update reference path base on teams.ai 1.5.3 (#12592)
Browse files Browse the repository at this point in the history
  • Loading branch information
QinghuiMeng-M authored Oct 25, 2024
1 parent b38ab61 commit 9100047
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ActivityTypes, Channels, TurnContext } from "botbuilder";
import { PredictedSayCommand, TurnState, Utilities, ClientCitation } from "@microsoft/teams-ai";
import { AIEntity } from "@microsoft/teams-ai/lib/actions/SayCommand";
import { PredictedSayCommand, TurnState, Utilities } from "@microsoft/teams-ai";
import { AIEntity, ClientCitation } from "@microsoft/teams-ai/lib/types";

export function sayCommand<TState extends TurnState = TurnState>(feedbackLoopEnabled = false) {
return async (context: TurnContext, _state: TState, data: PredictedSayCommand) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ActivityTypes, Channels, TurnContext } from "botbuilder";
import { PredictedSayCommand, TurnState, Utilities, ClientCitation } from "@microsoft/teams-ai";
import { AIEntity } from "@microsoft/teams-ai/lib/actions/SayCommand";
import { PredictedSayCommand, TurnState, Utilities } from "@microsoft/teams-ai";
import { AIEntity, ClientCitation } from "@microsoft/teams-ai/lib/types";

export function sayCommand<TState extends TurnState = TurnState>(feedbackLoopEnabled = false) {
return async (context: TurnContext, _state: TState, data: PredictedSayCommand) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ActivityTypes, Channels, TurnContext } from "botbuilder";
import { PredictedSayCommand, TurnState, Utilities, ClientCitation } from "@microsoft/teams-ai";
import { AIEntity } from "@microsoft/teams-ai/lib/actions/SayCommand";
import { PredictedSayCommand, TurnState, Utilities } from "@microsoft/teams-ai";
import { AIEntity, ClientCitation } from "@microsoft/teams-ai/lib/types";

export function sayCommand<TState extends TurnState = TurnState>(feedbackLoopEnabled = false) {
return async (context: TurnContext, _state: TState, data: PredictedSayCommand) => {
Expand Down

0 comments on commit 9100047

Please sign in to comment.