@agentica/chat 0.24.0 → 0.26.0

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.
@@ -1,13 +1,13 @@
1
- import type { AgenticaUserInputHistory } from "@agentica/core/src/histories/AgenticaUserInputHistory";
1
+ import type { AgenticaUserMessageHistory } from "@agentica/core";
2
2
 
3
3
  import FaceIcon from "@mui/icons-material/Face";
4
4
  import { Card, CardContent, Chip } from "@mui/material";
5
5
 
6
6
  import { MarkdownViewer } from "../../components/MarkdownViewer";
7
7
 
8
- export function AgenticaChatUserInput({
8
+ export function AgenticaChatUserMessageMovie({
9
9
  prompt,
10
- }: AgenticaChatUserInput.IProps) {
10
+ }: AgenticaChatUserMessageMovie.IProps) {
11
11
  return (
12
12
  <div
13
13
  style={{
@@ -49,8 +49,8 @@ export function AgenticaChatUserInput({
49
49
  </div>
50
50
  );
51
51
  }
52
- export namespace AgenticaChatUserInput {
52
+ export namespace AgenticaChatUserMessageMovie {
53
53
  export interface IProps {
54
- prompt: AgenticaUserInputHistory;
54
+ prompt: AgenticaUserMessageHistory;
55
55
  }
56
56
  }